/* =============================================
   Sớm Khuya Café – style-v2.css (Bento Edition)
   ============================================= */

/* ---- TOKENS ---- */
:root {
    --cream-light: #F5F0E8;
    /* page bg */
    --cream: #EDE6D6;
    /* mid cream – card accent */
    --cream-warm: #D4C4A8;
    /* warm cream – borders */
    --gray: #D8D3CC;
    /* warm light gray – replaces black cards */
    --brown: #8D6548;
    /* primary brown */
    --brown-dark: #5C3D1E;
    /* deep brown */
    --black: #1C1A17;
    /* text, buttons */
    --white: #FFFFFF;

    /* legacy aliases used below */
    --dark: var(--black);
    --amber: var(--brown);

    --radius: 20px;
    --radius-lg: 28px;
    --gap: 14px;
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Be Vietnam Pro', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream-light);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
}

/* Desktop only text */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Mobile: swap visibility */
@media (max-width: 640px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ---- NAVBAR ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream-light);
    border-bottom: 2px solid rgba(0, 0, 0, .06);
    padding: 12px 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo-img {
    height: 26px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    opacity: .7;
    transition: opacity .2s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta-btn {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 99px;
    white-space: nowrap;
    transition: background .2s;
}

.nav-cta-btn:hover {
    background: var(--brown);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: .3s;
}

/* ---- BENTO PAGE WRAPPER ---- */
.bento-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

/* ---- BENTO CARD BASE ---- */
.bento-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Image Background Handling */
/* Picture element - transparent container for responsive images */
.bento-card picture {
    display: contents;
}

.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
    transition: transform 0.5s ease;
}

.card-bg-img.pos-top {
    object-position: top;
}

.card-bg-img.pos-bottom {
    object-position: bottom;
}

.bento-card:hover .card-bg-img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
    pointer-events: none;
}

.card-overlay.dark {
    background: rgba(0, 0, 0, 0.4);
}

/* Ensure content stays above images */
.bento-card>*:not(.card-bg-img):not(.card-overlay) {
    position: relative;
    z-index: 2;
}


/* ---- BENTO GRIDS ---- */
.bento-grid {
    display: grid;
    gap: var(--gap);
}

/* ROW 1 – Hero */
.bento-row1 {
    grid-template-columns: 1fr 340px;
    grid-template-rows: auto;
}

.bento-col-right {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
}

/* ROW 2 – About */
.bento-row2 {
    grid-template-columns: 2fr 1fr 1fr;
}

/* ROW 3 – Pricing */
.bento-row3 {
    grid-template-columns: 1fr 1.6fr 1.4fr 1.6fr;
}

/* ROW 4 – Menu + TikTok */
.bento-row4 {
    grid-template-columns: 2fr 1fr;
}

/* ROW 5 – Branches + CTA */
.bento-row5 {
    grid-template-columns: 1fr 1.5fr 1.5fr 1fr;
}

/* ---- HERO CARD ---- */
.hero-card {
    background: var(--gray);
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.hero-bg-deco {
    position: absolute;
    width: 380px;
    height: 380px;
    background: rgba(141, 101, 72, .15);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    pointer-events: none;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.hero-big-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(52px, 7.5vw, 90px);
    line-height: 1.0;
    color: var(--white);
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-price-badge {
    position: absolute !important;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    background: var(--brown);
    color: var(--cream-light);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
}

.badge-from {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: .06em;
}

.badge-price {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 28px;
    line-height: 1;
}

.badge-unit {
    font-family: var(--font-body);
    font-size: 10px;
    opacity: .8;
}

.hero-bottom {
    margin-top: auto;
}

.hero-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.stars {
    color: var(--brown);
    font-size: 14px;
}

/* ---- WIFI CARD ---- */
.wifi-card {

    background: var(--cream);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    flex: 0.5;
}

.wifi-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.wifi-card .card-big-label {
    font-size: 28px;
    line-height: 1;
}

.wifi-card p {
    font-size: 13px;
    opacity: .75;
    margin-top: 4px;
}

/* ---- LATE CARD ---- */
.late-card {
    background: var(--brown);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.late-label {
    font-size: clamp(32px, 3.5vw, 32px) !important;
    color: var(--cream-light);
}

/* Make late-label bigger on mobile */
@media (max-width: 640px) {
    .late-label {
        font-size: 38px !important;
    }
}

.late-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    margin-top: 12px;
}

/* ---- SHARED LABEL ---- */
.card-big-label {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.tag-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    opacity: .55;
    margin-bottom: 10px;
}

/* ---- ABOUT CARD ---- */
.about-card h2 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.15;
    margin-bottom: 14px;
}

.about-card h2 em {
    font-style: italic;
    color: var(--brown);
}

.about-card p {
    font-size: 13.5px;
    color: rgba(28, 26, 23, .7);
    margin-bottom: 14px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-list li {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(28, 26, 23, .8);
}

/* ---- STATS CARD ---- */
.stats-card {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-item .stat-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 32px;
    line-height: 1;
    color: var(--dark);
}

.stat-item .stat-lbl {
    font-size: 12px;
    font-weight: 600;
    color: rgba(28, 26, 23, .65);
    margin-top: 2px;
}

.stat-divider {
    width: 40px;
    height: 2px;
    background: rgba(28, 26, 23, .2);
    border-radius: 2px;
}

/* ---- PLUG CARD ---- */
.plug-card {
    background: var(--gray);
    color: var(--black);
}

.plug-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.plug-card .card-big-label {
    color: var(--brown);
    font-size: 28px;
    margin-bottom: 8px;
}

.plug-card p {
    font-size: 13px;
    opacity: .75;
}

/* ---- SECTION HEADER CARD ---- */
.section-header-card {
    background: var(--cream);
    border: 2px solid rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.section-header-card h2 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.1;
    margin-bottom: 10px;
}

.section-header-card p {
    font-size: 13px;
    opacity: .65;
}

/* ---- MAIN PRICE CARD ---- */
.main-price-card {
    background: var(--dark);
    color: var(--white);
}

.price-tag-pill {
    display: inline-block;
    background: var(--cream);
    color: var(--black);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 14px;
}

.price-tag-pill.brown {
    background: var(--brown);
    color: var(--cream-light);
}

.price-tag-pill.dark {
    background: var(--black);
    color: var(--white);
}

.price-card-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.1;
    margin-bottom: 14px;
    color: var(--cream);
}

.price-big {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.price-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1;
}

.price-vnd {
    font-size: 14px;
    opacity: .65;
}

.price-dur {
    font-size: 12px;
    opacity: .55;
    margin-bottom: 14px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.price-list li {
    font-size: 13px;
    opacity: .8;
}

/* ---- EXTRA PRICE CARD ---- */
.extra-price-card {
    background: var(--brown);
    color: var(--white);
}

.extra-price-card .price-card-title {
    color: var(--cream-light);
}

.extra-price-card .price-list li {
    color: rgba(245, 240, 232, .85);
}

/* ---- ADDON CARD ---- */
.addon-card {
    background: var(--cream);

}

.addon-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.addon-card .card-big-label {
    font-size: 28px;
    margin-bottom: 8px;
}

.addon-tag {
    display: inline-block;
    background: var(--brown);
    color: var(--cream-light);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 8px;
}

.addon-card p {
    font-size: 13px;
    opacity: .7;
}

/* ---- IMAGE SLIDER CARD ---- */
.slider-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.slider-container {
    position: relative;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Individual Slides */
.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(1.05);
}

.slider-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Slider Images */
.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

/* Zoom effect on hover (reusing existing pattern) */
.slider-card:hover .slider-slide.active .slider-img {
    transform: scale(1);
}

/* Overlay for text readability */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Caption Positioning */
.slider-caption {
    position: absolute;
    bottom: 28px;
    left: 28px;
    z-index: 2;
}

.slider-caption .tag-label {
    color: var(--white);
    opacity: 0.9;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    right: 28px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

/* Responsive Heights */
@media (max-width: 960px) {
    .slider-container {
        min-height: 350px;
    }
}

@media (max-width: 640px) {
    .slider-container {
        min-height: 300px;
    }

    .slider-caption {
        bottom: 20px;
        left: 20px;
    }

    .slider-dots {
        bottom: 16px;
        right: 20px;
    }
}

/* ---- SOCIAL MEDIA CARD (Horizontal Rows) ---- */
.social-card-horizontal {
    background: var(--cream-light);
    color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
}

.social-links-horizontal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual Social Row */
.social-row {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.social-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-row:active {
    transform: translateY(0);
}

/* Platform-Specific Colors */
.tiktok-row {
    background: #000000;
    color: var(--white);
}

.facebook-row {
    background: #1877F2;
    color: var(--white);
}

.instagram-row {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 100%);
    color: var(--white);
}

/* Icon Container (Left) */
.social-row-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-row-icon svg {
    display: block;
}

/* Platform Name (Middle) */
.social-row-text {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.5px;
    text-align: left;
}

/* Arrow Icon (Right) */
.social-row-arrow {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.social-row:hover .social-row-arrow {
    transform: translate(2px, -2px);
}

/* Icon Colors (to match platform branding inside white circles) */
.tiktok-row .social-row-icon svg {
    color: #000000;
}

.facebook-row .social-row-icon svg {
    color: #1877F2;
}

.instagram-row .social-row-icon svg {
    color: #E4405F;
}

/* Arrow Icon Color */
.social-row-arrow svg {
    color: #1C1A17;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
    .social-row {
        grid-template-columns: 40px 1fr 40px;
        gap: 12px;
        padding: 14px 16px;
    }

    .social-row-icon,
    .social-row-arrow {
        width: 40px;
        height: 40px;
    }

    .social-row-icon svg {
        width: 20px;
        height: 20px;
    }

    .social-row-arrow svg {
        width: 16px;
        height: 16px;
    }

    .social-row-text {
        font-size: 16px;
    }
}

/* ---- BRANCH CARDS ---- */
.branch-header-card {
    background: var(--brown);
    color: var(--white);
}

.branch-header-card h2 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(24px, 2.8vw, 36px);
    line-height: 1.05;
    color: var(--cream-light);
}

.branch-header-card .tag-label {
    color: rgba(245, 240, 232, .65);
}

.branch-card-item {
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: 320px;
    max-height: 600px;
    overflow: hidden;
}

.branch-card-2 {
    background: var(--cream);
}

/* Branch Text Section (Smaller - 1/3) */
.branch-text-section {
    flex: 0 1 auto;
    /* Don't grow, can shrink, auto basis */
    padding: 24px 28px;
    /* Compact padding */
    background: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 8px;
    /* Gap below text section */
    border-radius: 0 0 24px 24px;
    /* Rounded bottom corners */
}

.branch-card-2 .branch-text-section {
    background: var(--cream);
}

/* Branch Map Section (Takes remaining space - 2/3) */
.branch-map-section {
    flex: 1 1 auto;
    /* Can grow to fill remaining space */
    position: relative;
    overflow: hidden;
    margin-top: 8px;
    /* Gap above map section */
    border-radius: 24px 24px 0 0;
    /* Rounded top corners */
}

.branch-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.branch-card-item:hover .branch-map-img {
    transform: scale(1.05);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.map-location-label {
    position: absolute;
    bottom: 50px;
    /* Well above the 28px border-radius at card bottom */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-align: center;
    font-size: 15px;
    /* Slightly larger for visibility */
    font-weight: 700;
    /* Bolder for better readability */
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.map-pin {
    font-size: 24px;
    margin-bottom: 4px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.branch-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 56px;
    color: rgba(28, 26, 23, .08);
    line-height: 1;
    margin-bottom: 12px;
}

.branch-card-item h3 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--black);
}

.branch-card-item p {
    font-size: 15px;
    opacity: .8;
    line-height: 1.65;
    margin-bottom: 16px;
    color: var(--black);
}

.branch-text-section .pill-btn {
    margin-top: 4px;
    font-size: 14px;
    align-self: flex-start;
}

/* ---- CTA STACK CONTAINER ---- */
.cta-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ---- CTA CARD ---- */
.cta-card {
    background: var(--gray);
    color: var(--black);
    flex: 1;
}

.cta-card h2 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.1;
    margin-bottom: 10px;
    color: var(--brown);
}

.cta-card p {
    font-size: 13px;
    opacity: .7;
    margin-bottom: 20px;
}

/* ---- HOURS CARD ---- */
.hours-card {
    background: var(--brown);
    color: var(--white);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hours-card .tag-label {
    color: rgba(255, 255, 255, 0.65);
}

.hours-card h2 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(22px, 2.4vw, 32px);
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--white);
}

.hours-time {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.time-label {
    font-size: 13px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-value {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 24px;
    color: var(--cream-light);
}

.time-separator {
    font-size: 18px;
    opacity: 0.5;
    margin: 0 4px;
}

.hours-card p {
    font-size: 13px;
    opacity: 0.8;
    margin-top: auto;
}

/* ---- PILL BUTTONS ---- */
.pill-btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 99px;
    transition: transform .18s, opacity .18s;
    align-self: flex-start;
}

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

.pill-btn:active {
    transform: translateY(0);
}

.pill-btn.dark {
    background: var(--black);
    color: var(--white);
}

.pill-btn.brown {
    background: var(--brown);
    color: var(--cream-light);
}

.pill-btn.cream {
    background: var(--cream);
    color: var(--black);
}

.pill-btn.white {
    background: var(--white);
    color: var(--black);
}

/* kept for backwards compat */
.pill-btn.beige {
    background: var(--cream);
    color: var(--black);
}

.pill-btn.full {
    display: flex;
    justify-content: center;
    align-self: stretch;
    width: 100%;
}

/* ---- FOOTER ---- */
.footer-v2 {
    background: var(--dark);
    color: rgba(255, 255, 255, .5);
    padding: 28px 20px;
    text-align: center;
    margin-top: 6px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-logo-img {
    height: 22px;
    width: auto;
    margin-bottom: 4px;
    filter: brightness(0) invert(1);
    opacity: .7;
}

.footer-v2 p {
    font-size: 12.5px;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
    .bento-row1 {
        grid-template-columns: 1fr;
    }

    .bento-col-right {
        flex-direction: row;
    }

    .wifi-card {
        flex: 1;
    }

    .late-card {
        flex: 1;
    }

    .bento-row2 {
        grid-template-columns: 1fr 1fr;
    }

    .stats-card {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .stat-divider {
        width: 2px;
        height: 40px;
    }

    .bento-row3 {
        grid-template-columns: 1fr 1fr;
    }

    .bento-row4 {
        grid-template-columns: 1fr;
    }

    .bento-row-utility {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-row-utility .utility-icon-circle {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .bento-row5 {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on tablet */
    }

    .branch-card-item {
        min-height: 360px;
        max-height: none;
        /* Allow flexible height */
    }

    /* Make slider square on mobile/tablet only */
    .slider-card {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 640px) {
    .bento-page {
        padding: 12px;
        gap: 10px;
    }

    .bento-card {
        padding: 22px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-cta-btn {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 16px 20px;
        border-bottom: 2px solid rgba(0, 0, 0, .06);
        gap: 14px;
        z-index: 99;
    }

    .bento-col-right {
        flex-direction: column;
    }

    .bento-row2,
    .bento-row3,
    .bento-row5,
    .bento-row-utility {
        grid-template-columns: 1fr;
    }

    .bento-row-utility .utility-card {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 16px;
        min-height: unset;
        padding: 20px;
    }

    .bento-row-utility .utility-icon-circle {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .branch-card-item {
        min-height: 400px;
        /* Increased for mobile */
        max-height: 600px;
        padding: 0;
        /* Remove padding to allow full-width image */
    }

    .branch-text-section {
        padding: 24px 20px;
        margin-bottom: 6px;
        /* Smaller gap on mobile */
        border-radius: 0 0 20px 20px;
        flex: 0 0 auto;
        /* Don't grow, fixed size */
    }

    .branch-map-section {
        margin-top: 6px;
        /* Smaller gap on mobile */
        border-radius: 20px 20px 0 0;
        min-height: 240px;
        /* Ensure map shows on mobile */
        flex: 1;
        /* Take remaining space */
        overflow: hidden;
        position: relative;
    }

    .branch-map-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    .map-overlay {
        z-index: 1;
    }

    .map-location-label {
        z-index: 2;
    }

    .branch-num {
        font-size: 48px;
    }

    .branch-card-item h3 {
        font-size: 22px;
    }

    .map-location-label {
        font-size: 13px;
        bottom: 16px;
    }

    .menu-cols {
        grid-template-columns: 1fr 1fr;
    }

    .hero-price-badge {
        width: 88px;
        height: 88px;
        right: 20px;
    }

    .badge-price {
        font-size: 22px;
    }

    /* Ensure cards with background images have minimum height on mobile */
    .hero-card {
        min-height: 320px;
    }


    .cta-card {
        min-height: 180px;
    }

    .wifi-card {
        min-height: 250px;
    }

    .late-card {
        min-height: 400px;
    }

    .about-card,
    .plug-card {
        min-height: 400px;
    }

    .slider-card {
        min-height: 280px;
        padding: 0 !important;
        /* Ensure no padding on mobile */
    }

    .slider-container {
        min-height: 280px;
        /* Match mobile card height */
    }



}

/* ── UTILITY ROW ─────────────────────────────────── */
.bento-row-utility {
    grid-template-columns: repeat(3, 1fr);
}

.utility-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    min-height: 200px;
}

.utility-card--cream {
    background: var(--cream);
}

.utility-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cream-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 4px;
}

.utility-icon-svg {
    width: 26px;
    height: 26px;
}

.utility-icon-svg-color {
    width: 28px;
    height: 28px;
}

.utility-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(20px, 2vw, 26px);
    color: var(--black);
    line-height: 1.2;
}

.utility-sub {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 13px;
    color: #6B6056;
    margin: 0;
}

/* ── RESPONSIVE VISIBILITY HELPERS ──────────────── */
.mobile-only {
    display: none;
}

@media (max-width: 640px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: revert;
    }
}

@media (max-width: 640px) {
    .bento-row-utility {
        grid-template-columns: 1fr;
    }

    .bento-row-utility .utility-card {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 16px;
        min-height: unset;
        padding: 20px;
    }

    .bento-row-utility .utility-icon-circle {
        flex-shrink: 0;
        margin-bottom: 0;
    }
}