/* ===========================
   BRAND FONT
   =========================== */
@font-face {
    font-family: 'Inlander';
    src: url('fonts/Inlander/Inlander.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.brand-name {
    font-family: 'Inlander', serif !important;
}

/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Mary Grace Inspired */
    --cream: #ffffff;
    --grace: #faeddf;
    --warm-red: #A93226;
    --maroon: #8B1A1A;
    --gold: #E8C547;
    --light-gold: #FFF4D4;
    --text-dark: #5D4037;
    --text-light: #7B6B63;
    --white: #FFFFFF;
    --accent-red: #C0392B;
    --leaf-green: #4A7C59;
    
    /* Typography - Premium Feel */
    --font-heading: 'Lora', serif;
    --font-body: 'Nunito', sans-serif;
    
    /* Spacing - Generous Whitespace */
    --section-padding: 140px 0;
    --container-width: 1400px;
    
    /* Shadows - Subtle and Elegant */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    font-size: 16px;
    line-height: 1.8;
    overflow-x: hidden;
    letter-spacing: 0.2px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 60px;
}

/* ===========================
   TOP BANNER
   =========================== */
.top-banner {
    background-color: #7E0000;
    /* background-color: var(--accent-red); */
    color: var(--white);
    text-align: center;
    padding: 7px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
}

/* ===========================
   NAVIGATION - Premium Style
   =========================== */
.navbar {
    background-color: var(--grace);
    padding: 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar:hover {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-left {
    justify-content: flex-end;
    grid-column: 1;
}

.nav-right-wrapper {
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-start;
}

@media (min-width: 769px) {
    .nav-wrapper[data-logo-position="left"] {
        display: flex;
        align-items: center;
        gap: 36px;
        position: relative;
    }

    .nav-wrapper[data-logo-position="left"] .logo {
        order: 1;
        text-align: left;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }

    .nav-wrapper[data-logo-position="left"] .nav-left {
        order: 2;
        flex: 1;
        justify-content: center;
        flex-wrap: wrap;
        gap: 60px;
    }

    .nav-wrapper[data-logo-position="left"] .nav-right-wrapper {
        order: 3;
        justify-content: flex-start;
        gap: 32px;
        margin-left: auto;
        flex-shrink: 0;
    }

    .nav-wrapper[data-logo-position="right"] {
        display: flex;
        align-items: center;
        gap: 36px;
        position: relative;
    }

    .nav-wrapper[data-logo-position="right"] .nav-left {
        order: 1;
        flex: 1;
        justify-content: center;
        flex-wrap: wrap;
        gap: 60px;
        margin: 0;
    }

    .nav-wrapper[data-logo-position="right"] .nav-right-wrapper {
        order: 2;
        justify-content: flex-start;
        gap: 32px;
        flex-shrink: 0;
    }

    .nav-wrapper[data-logo-position="right"] .logo {
        order: 3;
        text-align: right;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
    }
}

.nav-right {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--warm-red);
}

.mobile-nav-panel {
    display: none;
}

.logo {
    grid-column: 2;
    text-align: center;
    height: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--warm-red);
    margin-bottom: -5px;
    letter-spacing: 1px;
}

.logo .tagline {
    font-size: 13px;
    color: var(--gold);
    font-style: italic;
    letter-spacing: 2px;
    font-weight: 400;
}

.order-btn {
    background-color: var(--maroon);
    color: var(--white);
    border: 3px solid var(--white);
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.5px;
}

.order-btn:hover {
    background-color: var(--warm-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===========================
   HERO SECTION - Premium
   =========================== */
.hero {
    height: calc(100vh - 110px);
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35)), 
                url('images/hero/crispy-chamie-tita-yayoys.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.35));
    z-index: 1;
}

.hero.hero--slider .hero-overlay,
.hero.hero--slider .hero-content {
    display: none;
}

.hero-content {
    position: relative;
}

.hero-media,
.hero-slider,
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

@keyframes heroSlideZoomOut {
    from { transform: scale(1.12); }
    to   { transform: scale(1.0); }
}

@keyframes heroSlideZoomIn {
    from { transform: scale(1.0); }
    to   { transform: scale(1.12); }
}

.hero-slider__slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slider__slide.is-active {
    opacity: 1;
    animation: heroSlideZoomOut 5.5s ease forwards;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 78px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.2;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 44px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.6;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45), 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

/* ===========================
   HERO SLIDER - Controls
   =========================== */
.hero-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.52) 60%,
        rgba(0, 0, 0, 0.40) 100%
    );
    z-index: 1;
}

.hero-slider__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 clamp(24px, 8vw, 160px);
}

.hero-slider__nav {
    position: absolute;
    top: auto;
    bottom: 20px;
    transform: none;
    z-index: 10;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(4px);
}

.hero-slider__nav:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Flanking the dot strip — dots total width ≈ 90px, so offset by ~62px from center */
.hero-slider__prev { left: auto; right: calc(50% + 62px); }
.hero-slider__next { right: auto; left: calc(50% + 62px); }

.hero-slider__dots {
    position: absolute;
    bottom: 37px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.65);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.hero-slider__dot.is-active {
    background: var(--white);
    transform: scale(1.35);
    border-color: var(--white);
}

@media (max-width: 768px) {
    .hero-slider__nav {
        width: 38px;
        height: 38px;
        font-size: 13px;
        bottom: 18px;
    }
    .hero-slider__prev { right: calc(50% + 56px); left: auto; }
    .hero-slider__next { left: calc(50% + 56px); right: auto; }
}

@media (max-width: 480px) {
    .hero-slider__nav { display: none; }
}

/* Slide 2 — split layout (text + product image) */
.hero-slider__content--split {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: clamp(32px, 6vw, 96px);
    padding: 0 clamp(24px, 6vw, 120px);
    /* text-align intentionally NOT set here — inherits center from .hero-slider__content,
       overridden to left only at desktop via the rule below */
}

@media (min-width: 901px) {
    .hero-slider__content--split {
        text-align: left;
    }
    .hero-slider__text {
        text-align: left;
    }
}

.hero-slider__text {
    flex: 1;
    max-width: 520px;
}

.hero-slider__content--split .hero-subtitle {
    margin-bottom: 0;
}

.hero-slider__product {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-slider__product-img {
    width: clamp(420px, 52vw, 720px);
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

.hero-slider__product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero-slider__product-name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-slider__product-price {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .hero-slider__content--split {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
        justify-content: center;
        padding: 0 clamp(20px, 6vw, 60px);
    }

    .hero-slider__text {
        flex: none;
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-slider__product-img {
        width: clamp(220px, 60vw, 360px);
    }
}

@media (max-width: 480px) {
    .hero-slider__product-img { width: clamp(240px, 72vw, 340px); }
    .hero-slider__text {
        width: 100%;
        text-align: center;
    }
}

/* ===========================
   BUTTONS - Elegant
   =========================== */
.btn {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.8px;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--warm-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--warm-red);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--warm-red);
    border: 2px solid var(--warm-red);
    padding: 14px 35px;
    font-size: 15px;
}

.btn-outline:hover {
    background-color: var(--warm-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 22px 55px;
    font-size: 16px;
}

/* ===========================
   SECTION STYLING - Premium
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    color: var(--warm-red);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===========================
   FEATURED DISHES - Larger Photos
   =========================== */
.featured-dishes {
    padding: var(--section-padding);
    background-color: var(--white);
}

.featured-dishes .container {
    max-width: 1520px;
    padding-left: 24px;
    padding-right: 24px;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.dish-card {
    background-color: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.dish-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.dish-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.dish-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.dish-card:hover .dish-image::after {
    opacity: 1;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dish-card:hover .dish-image img {
    transform: scale(1.08);
}

.dish-info {
    padding: 40px;
}

.dish-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--warm-red);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.dish-info p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.price {
    font-size: 26px;
    color: var(--warm-red);
    font-weight: 700;
    font-family: var(--font-heading);
}

.dish-card .btn {
    margin-top: 0;
    margin-left: 0;
    display: inline-block;
    width: auto;
    padding: 8px 16px;
    font-size: 12px;
    line-height: 1.2;
}

.dish-info .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}

/* ===========================
   OUR STORY - Premium
   =========================== */
.our-story {
    padding: var(--section-padding);
    background: #ffffff;
}

.our-story--family-bg {
    background: url('images/hero/bg-tita-yayoys.jpg') center/cover fixed;
}

/* ── Story: centered editorial header ── */
.story-editorial-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}

.story-editorial-header .franchise-eyebrow {
    margin-bottom: 16px;
}

.story-hero-title {
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin-bottom: 28px;
}

.story-rule {
    display: block;
    width: 72px;
    height: 2px;
    background: var(--warm-red);
    margin: 0 auto;
    opacity: 0.7;
}

/* ── Story: feature grid (image left | pull-quote right) ── */
.story-feature-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 52px;
    align-items: center;
    margin-bottom: 56px;
}

.story-feature-image {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #f9f6f1;
    display: flex;
    flex-direction: column;
}

.story-feature-image img {
    width: 100%;
    height: 460px;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 44px 48px;
    box-sizing: border-box;
}

.story-feature-image img:hover {
    transform: none;
}

.story-feature-image figcaption {
    background: rgba(93, 64, 55, 0.85);
    color: var(--cream);
    font-size: 12.5px;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 10px 20px;
}

.story-feature-intro {
    border-left: 3px solid var(--warm-red);
    padding-left: 32px;
}

.story-quote-mark {
    display: block;
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 0.6;
    color: var(--warm-red);
    opacity: 0.35;
    margin-bottom: 20px;
    user-select: none;
}

.story-intro {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.9;
}

/* ── Story: newspaper 2-column body ── */
.story-body-columns {
    column-count: 2;
    column-gap: 52px;
    column-rule: 1px solid rgba(169, 50, 38, 0.18);
}

.story-body-columns p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 22px;
    break-inside: avoid;
}

/* ── Story: reused wrapper (Founder's Message) ── */
.story-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.story-image {
    border-radius: 16px;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    display: block;
}

.story-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.story-content .section-title {
    text-align: left;
    margin-bottom: 35px;
}

.story-text p {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.9;
}

.story-signature {
    font-family: var(--font-heading);
    font-size: 28px;
    font-style: italic;
    color: var(--warm-red);
    margin-top: 40px;
}

/* ===========================
   MENU CATEGORIES - Spacious
   =========================== */
.menu-categories {
    padding: var(--section-padding);
    background-color: var(--white);
}

.menu-categories .container {
    max-width: 1520px;
    padding-left: 24px;
    padding-right: 24px;
}

#menu .container {
    max-width: 1800px;
    padding-left: 8px;
    padding-right: 8px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.category-card {
    background-color: var(--cream);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
}

.category-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.category-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--warm-red);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.category-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.category-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.category-link:hover {
    color: var(--warm-red);
}

/* Explore Menu Action Buttons */
.menu-action-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.menu-action-btn {
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-body);
    color: var(--accent-red);
    border: 2px solid var(--accent-red);
    background-color: transparent;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    line-height: 1;
    transition: all 0.3s ease;
    letter-spacing: 0.4px;
    box-shadow: var(--shadow-sm);
}

.menu-action-btn:hover {
    background-color: var(--maroon);
    color: var(--white);
    border-color: var(--maroon);
    box-shadow: var(--shadow-md);
}

/* ===========================
   ORDER ONLINE - Premium
   =========================== */
.order-online {
    padding: var(--section-padding);
    background-color: var(--light-gold);
}

.order-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 70px;
}

.step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 38%;
    background-color: var(--gold);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 70px;
    margin-bottom: 25px;
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--warm-red);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.order-cta {
    text-align: center;
}

/* ===========================
   BRANCHES - Elegant Cards
   =========================== */
.branches {
    padding: var(--section-padding);
    background-color: var(--white);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.branch-card {
    background-color: var(--cream);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-sm);
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.branch-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.branch-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.branch-card:hover .branch-image img {
    transform: scale(1.1);
}

.branch-info {
    padding: 40px;
}

.branch-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--warm-red);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.branch-info p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.7;
}

.branch-info .icon {
    font-size: 18px;
}

.branch-info button,
.branch-info .btn {
    margin-top: 20px;
    width: 100%;
}

.branch-contact a {
    color: inherit;
    text-decoration: none;
}

.branch-contact a:hover {
    color: var(--warm-red);
}

.branches-hidden {
    display: none !important;
}

/* ===========================
   CUSTOMER FAVORITES - Premium
   =========================== */
.customer-favorites {
    padding: var(--section-padding);
    background-color: var(--light-gold);
}

.favorites-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.favorite-item {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 40px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.favorite-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.favorite-image {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.favorite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.favorite-item:hover .favorite-image img {
    transform: scale(1.08);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.favorite-item h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--warm-red);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.rating {
    font-size: 20px;
    margin-bottom: 18px;
}

.favorite-item p {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
}

/* ===========================
   FOOTER - Clean & Modern
   =========================== */
.footer {
    background-color: var(--maroon);
    color: var(--cream);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--gold);
    letter-spacing: 1px;
}

.footer-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-tagline {
    font-size: 15px;
    font-style: italic;
    color: var(--light-gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    color: var(--cream);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 18px;
}

.social-icon {
    font-size: 26px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.3);
}

.contact-info li {
    color: var(--cream);
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 15px;
    color: var(--light-gold);
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    gap: 35px;
}

.footer-links a {
    color: var(--light-gold);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: var(--gold);
}

.floating-social-rail {
    position: fixed;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9997;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-social-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255, 248, 239, 0.54) 0%, rgba(250, 237, 223, 0.34) 100%);
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-social-btn:hover {
    transform: translateX(2px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.floating-social-btn__icon {
    color: var(--warm-red);
    font-size: 24px;
    line-height: 1;
}

.floating-social-btn__label {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 248, 239, 0.92) 0%, rgba(250, 237, 223, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    color: var(--warm-red);
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.floating-social-btn:hover .floating-social-btn__label,
.floating-social-btn:focus-visible .floating-social-btn__label {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox-enabled {
    cursor: zoom-in;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    z-index: 3000;
}

.image-lightbox.is-open {
    display: flex;
}

.image-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(22, 14, 10, 0.84);
    backdrop-filter: blur(6px);
}

.image-lightbox__dialog {
    position: relative;
    z-index: 1;
    max-width: min(92vw, 1080px);
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.image-lightbox__img {
    max-width: 100%;
    max-height: calc(88vh - 44px);
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    background: rgba(255, 248, 231, 0.98);
}

.image-lightbox__caption {
    margin: 0;
    color: var(--white);
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
}

.image-lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 248, 231, 0.95);
    color: var(--warm-red);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1400px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    :root {
        --section-padding: 100px 0;
    }
    
    .dishes-grid,
    .category-grid,
    .branches-grid,
    .favorites-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .order-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 36px;
    }

    /* ── Story ────────────────────────────── */
    .story-feature-grid {
        gap: 40px;
    }

    .story-feature-image img {
        height: 400px;
        padding: 40px 44px;
    }

    .story-body-columns {
        column-gap: 36px;
    }

}

/* ─────────────────────────────────────────
   RESPONSIVE — TABLET / LARGE MOBILE (≤768px)
───────────────────────────────────────── */
@media (max-width: 768px) {
    .floating-social-rail {
        display: none;
    }

    :root {
        --section-padding: 70px 0;
    }

    .container {
        padding: 0 24px;
    }

    /* ── Navbar ──────────────────────────────── */
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 24px;
        height: 68px;
        position: relative;
        gap: 0;
    }

    .logo {
        grid-column: auto;
        order: 1;
        flex: 0 0 auto;
        margin-right: auto;
        text-align: left;
    }

    .logo-image {
        height: 52px;
        margin: 0;
    }

    /* Hide both nav link lists by default */
    .nav-left,
    .nav-right {
        display: none;
    }

    /* Right wrapper: only show hamburger */
    .nav-right-wrapper {
        order: 2;
        grid-column: auto;
        gap: 0;
        justify-content: flex-end;
    }

    .nav-right-wrapper .order-btn {
        display: none;
    }

    /* Hamburger — created by script.js */
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--light-gold) !important;
        border: 1.5px solid rgba(169, 50, 38, 0.25) !important;
        border-radius: 8px !important;
        color: var(--warm-red) !important;
        font-size: 18px !important;
        cursor: pointer;
        flex-shrink: 0;
    }

    .mobile-nav-panel {
        display: none;
        position: absolute;
        top: 68px;
        left: 16px;
        right: 16px;
        background: rgba(255, 250, 243, 0.98);
        border: 1px solid rgba(212, 165, 116, 0.28);
        border-top: 3px solid var(--gold);
        border-radius: 18px;
        box-shadow: 0 24px 50px rgba(32, 19, 12, 0.18);
        z-index: 998;
        padding: 14px;
        backdrop-filter: blur(10px);
    }

    .mobile-nav-panel.active {
        display: block;
    }

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

    .mobile-nav-link {
        display: block;
        padding: 14px 16px;
        border-radius: 12px;
        text-decoration: none;
        color: var(--text-dark);
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.2px;
        background: transparent;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:focus {
        background: var(--light-gold);
        color: var(--warm-red);
        transform: translateX(4px);
    }

    .mobile-nav-cta {
        width: 100%;
        margin-top: 14px;
        border: 0;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--warm-red), var(--maroon));
        color: var(--white);
        padding: 14px 16px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.4px;
        cursor: pointer;
        box-shadow: 0 12px 24px rgba(125, 34, 12, 0.2);
    }

    /* ── Hero ──────────────────────────────── */
    .hero {
        height: calc(100vh - 110px);
        min-height: 480px;
    }

    .hero-title {
        font-size: 52px;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 32px;
        letter-spacing: 0.3px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .btn {
        padding: 14px 32px;
        font-size: 14px;
    }

    .btn-large {
        padding: 16px 40px;
    }

    /* ── Sections ──────────────────────────── */
    .section-header {
        margin-bottom: 48px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 15px;
        max-width: 100%;
    }

    /* ── Story ─────────────────────────────── */
    .story-editorial-header {
        margin-bottom: 36px;
    }

    .story-feature-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 36px;
    }

    .story-feature-image img {
        height: 300px;
        padding: 36px 40px;
    }

    .story-feature-intro {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--warm-red);
        padding-top: 24px;
    }

    .story-quote-mark {
        display: none;
    }

    .story-body-columns {
        column-count: 2;
        column-gap: 28px;
    }

    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-image {
        order: -1;
    }

    /* ── Grids ─────────────────────────────── */
    .dishes-grid,
    .category-grid,
    .branches-grid,
    .favorites-slider,
    .order-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ── Cards ─────────────────────────────── */
    .category-card {
        padding: 32px 24px;
    }

    .dish-card .dish-info,
    .favorite-item,
    .step {
        padding: 24px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mv-card {
        padding: 36px 28px;
    }

    /* ── Vision / Mission responsive (≤768px) ── */
    .vision-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 32px 28px;
    }

    .mission-feature {
        padding: 36px 28px;
    }

    .mission-columns {
        column-count: 1;
    }

    .mission-closing {
        font-size: 18px;
        padding: 22px 24px;
    }

    .benefits-grid,
    .investment-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card,
    .investment-card {
        padding: 32px 24px;
    }

    .value-card {
        padding: 28px 20px;
    }

    /* ── Page header ───────────────────────── */
    .page-header {
        padding: 40px 0 28px;
    }

    .page-title {
        font-size: 34px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    /* ── Static menu page ──────────────────── */
    .menu-section {
        padding: 60px 0;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .menu-item {
        padding: 22px 20px;
    }

    .menu-category {
        margin-bottom: 50px;
    }

    .category-title {
        font-size: 30px;
        margin-bottom: 28px;
    }

    /* ── Branch cards ──────────────────────── */
    .branch-info {
        padding: 24px;
    }

    /* ── Footer ────────────────────────────── */
    .footer {
        padding: 56px 0 28px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .footer-section h3 {
        font-size: 22px;
    }
}

/* ─────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE (≤480px)
───────────────────────────────────────── */
@media (max-width: 480px) {
    :root {
        --section-padding: 54px 0;
    }

    .container {
        padding: 0 18px;
    }

    /* ── Navbar ──────────────────────────────── */
    .nav-wrapper {
        padding: 0 18px;
        height: 60px;
    }

    .mobile-nav-panel {
        top: 60px;
        left: 12px;
        right: 12px;
    }

    .logo-image {
        height: 44px;
        margin: 0;
    }

    /* ── Hero ──────────────────────────────── */
    .hero {
        height: auto;
        min-height: 100svh;
        padding: 90px 0 60px;
        align-items: center;
    }

    .hero-title {
        font-size: 40px;
        margin-bottom: 14px;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 26px;
    }

    .btn {
        padding: 13px 28px;
        font-size: 13.5px;
        width: 100%;
        max-width: 260px;
    }

    /* ── Sections ──────────────────────────── */
    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* ── Story ─────────────────────────────── */
    .story-editorial-header {
        margin-bottom: 28px;
    }

    .story-feature-image img {
        height: 220px;
        padding: 28px 32px;
    }

    .story-body-columns {
        column-count: 1;
    }

    /* ── Page header ───────────────────────── */
    .page-header {
        padding: 32px 0 20px;
    }

    .page-title {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 14.5px;
    }

    /* ── Grids ─────────────────────────────── */
    .dishes-grid,
    .category-grid,
    .branches-grid {
        gap: 16px;
    }

    /* ── Cards ─────────────────────────────── */
    .category-card {
        padding: 24px 18px;
    }

    .mv-card {
        padding: 28px 20px;
    }

    .vision-banner {
        padding: 24px 20px;
        gap: 16px;
    }

    .mission-feature {
        padding: 28px 20px;
    }

    .mission-closing {
        font-size: 17px;
        padding: 20px 18px;
    }

    .benefit-card,
    .investment-card {
        padding: 26px 18px;
    }

    .value-card {
        padding: 22px 16px;
    }

    /* ── Menu category headers ─────────────── */
    .category-title {
        font-size: 26px;
    }

    /* ── Footer ────────────────────────────── */
    .footer {
        padding: 48px 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* Add Menu Page Styles */

.page-header {
    background: #ffffff;
    padding: 56px 0 40px;
    text-align: center;
    border-bottom: 1px solid #ece7de;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--warm-red);
}

.page-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: 0;
    color: var(--text-light);
}

.playfair-heading {
    font-family: var(--font-heading);
}

.menu-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.menu-category {
    margin-bottom: 100px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--warm-red);
    margin-bottom: 28px;
    text-align: center;
    letter-spacing: 1px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.menu-item {
    padding: 30px;
    background-color: var(--cream);
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background-color: var(--light-gold);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px dotted var(--gold);
}

.menu-item h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--warm-red);
    letter-spacing: 0.5px;
}

.menu-price {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--gold);
    font-weight: 700;
}

.menu-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   MENU PAGE — DYNAMIC
   =========================== */

/* ── Page Layout ───────────────────────────────── */
.menu-page-layout {
    background: var(--cream);
    padding: 70px 0 120px;
}

.menu-layout-wrapper {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    align-items: start;
}

/* ── Sidebar ───────────────────────────────────── */
.menu-sidebar {
    position: sticky;
    top: 90px;
}

.menu-sidebar-inner {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(232, 197, 71, 0.22);
}

.sidebar-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.sidebar-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--warm-red);
    margin-bottom: 16px;
    line-height: 1;
}

.sidebar-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(232, 197, 71, 0.55), transparent);
    margin-bottom: 20px;
}

/* ── Filter Buttons — vertical list ────────────── */
.menu-filters {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    border-radius: 0 8px 8px 0;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.filter-btn i {
    width: 18px;
    text-align: center;
    font-size: 13px;
    color: rgba(169, 50, 38, 0.35);
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.filter-btn:hover {
    background: var(--light-gold);
    color: var(--warm-red);
    border-left-color: rgba(169, 50, 38, 0.3);
}

.filter-btn:hover i {
    color: var(--warm-red);
}

.filter-btn.active {
    background: var(--light-gold);
    color: var(--warm-red);
    border-left-color: var(--warm-red);
    font-weight: 600;
}

.filter-btn.active i {
    color: var(--warm-red);
}

/* ── Category Section ──────────────────────────── */
.menu-category {
    margin-bottom: 80px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(232, 197, 71, 0.3);
}

.category-header .category-title {
    margin-bottom: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.category-header .category-title i {
    font-size: 22px;
    color: var(--gold);
}

.category-divider {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(232, 197, 71, 0.5), transparent);
}

/* ── Menu Items Grid ───────────────────────────── */
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* ── Menu Card ─────────────────────────────────── */
.menu-item-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(232, 197, 71, 0.12);
}

.menu-item-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(232, 197, 71, 0.4);
}

.menu-item-card.unavailable {
    opacity: 0.6;
    filter: grayscale(0.4);
}

/* Card Image */
.menu-image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: var(--grace);
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.menu-image img.img-fallback {
    object-fit: contain;
    padding: 28px;
    background: var(--grace);
    opacity: 0.45;
}

.menu-item-card:hover .menu-image img {
    transform: scale(1.07);
}

/* Badges */
.menu-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.menu-badge.unavailable-badge {
    background: #c0392b;
    color: var(--white);
    top: auto;
    bottom: 14px;
}

/* Card Body */
.menu-content {
    padding: 22px 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 7px;
    line-height: 1.25;
}

.menu-content p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 18px;
}

/* Card Footer */
.menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(232, 197, 71, 0.3);
}

.menu-footer .price {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--warm-red);
    letter-spacing: 0.5px;
}

.menu-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: var(--warm-red);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.menu-order-btn:hover {
    background: var(--maroon);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(139, 26, 26, 0.35);
}

.unavailable-text {
    font-size: 13px;
    font-weight: 500;
    color: #b0a090;
    font-style: italic;
}

/* ── Loading State ─────────────────────────────── */
.menu-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    gap: 20px;
    color: var(--text-light);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.menu-loading-dots {
    display: flex;
    gap: 10px;
}

.menu-loading-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--warm-red);
    animation: menuDotPulse 1.3s ease-in-out infinite;
}

.menu-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.menu-loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes menuDotPulse {
    0%, 80%, 100% { transform: scale(0.5); opacity: 0.35; }
    40%            { transform: scale(1);   opacity: 1;    }
}

/* ── Error & Empty States ──────────────────────── */
.error-state,
.menu-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    gap: 16px;
    color: var(--text-light);
    text-align: center;
}

.error-state i,
.menu-empty i {
    font-size: 44px;
    color: rgba(169, 50, 38, 0.25);
    margin-bottom: 8px;
}

.error-state p,
.menu-empty p {
    font-size: 15px;
    max-width: 380px;
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1100px) {
    .menu-layout-wrapper {
        grid-template-columns: 210px 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .menu-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .menu-sidebar {
        position: static;
    }

    .menu-sidebar-inner {
        border-radius: 18px;
        padding: 24px 22px;
        box-shadow: var(--shadow-sm);
        border: 1px solid rgba(232, 197, 71, 0.2);
        background: var(--white);
    }

    .sidebar-label {
        margin-bottom: 8px;
    }

    .sidebar-heading {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .menu-filters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .filter-btn {
        white-space: normal;
        border: 1.5px solid rgba(169, 50, 38, 0.2);
        border-left-width: 1.5px;
        border-radius: 14px;
        padding: 12px 14px;
        font-size: 13px;
        min-height: 54px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .filter-btn.active {
        background: var(--warm-red);
        border-color: var(--warm-red);
        color: var(--white);
    }

    .filter-btn.active i {
        color: var(--white);
    }

    .menu-content-area {
        padding-top: 0;
    }

    .menu-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .category-header .category-title {
        white-space: normal;
    }

    .category-divider {
        width: 100%;
    }

    .menu-page-layout {
        padding: 32px 0 80px;
    }
}

@media (max-width: 600px) {
    .menu-items-grid {
        grid-template-columns: 1fr;
    }

    .menu-filters {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .filter-btn {
        padding: 11px 12px;
        font-size: 12px;
        min-height: 50px;
    }

    .menu-item-card {
        display: grid;
        grid-template-columns: 120px minmax(0, 1fr);
        align-items: stretch;
    }

    .menu-image {
        aspect-ratio: auto;
        min-height: 100%;
        height: 100%;
    }

    .menu-image img.img-fallback {
        padding: 18px;
    }

    .category-header .category-title {
        font-size: 26px;
    }

    .menu-content {
        padding: 14px 16px 14px;
    }

    .menu-content h3 {
        font-size: 19px;
    }

    .menu-content p {
        margin-bottom: 14px;
        font-size: 13px;
        line-height: 1.65;
    }

    .menu-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .menu-footer .price {
        font-size: 22px;
    }

    .menu-order-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .menu-filters {
        grid-template-columns: 1fr;
    }

    .menu-item-card {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .menu-content h3 {
        font-size: 18px;
    }

    .menu-footer .price {
        font-size: 20px;
    }
}

/* ===========================
   STORY PAGE STYLES
   =========================== */
.mission-vision {
    padding: var(--section-padding);
    background-color: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.mv-card {
    padding: 60px;
    background-color: var(--light-gold);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mv-card h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--warm-red);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.mv-card p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-dark);
}

/* ── Vision banner ─────────────────────────────── */
.vision-banner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--maroon);
    border-radius: 14px;
    padding: 44px 52px;
    margin-bottom: 28px;
}

.vision-banner-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--gold);
}

.vision-banner-label {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.vision-banner-body p {
    font-size: 17px;
    line-height: 1.85;
    color: rgba(255, 248, 231, 0.9);
}

/* ── Mission feature block ─────────────────────── */
.mission-feature {
    background: var(--light-gold);
    border-radius: 14px;
    padding: 52px 56px;
}

.mission-feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.mission-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--warm-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
}

.mission-label {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-red);
}

.mission-columns {
    column-count: 2;
    column-gap: 48px;
    column-rule: 1px solid rgba(169, 50, 38, 0.15);
    margin-bottom: 40px;
}

.mission-columns p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
    break-inside: avoid;
}

.mission-closing {
    margin: 0;
    padding: 28px 40px;
    background: var(--warm-red);
    border-radius: 10px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    line-height: 1.7;
    color: var(--cream);
    border: none;
}

.mv-icon {
    font-size: 32px;
    color: var(--warm-red);
    margin-bottom: 16px;
    opacity: 0.7;
}

.mv-text-wrapper {
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.mv-text-wrapper.collapsed {
    max-height: 120px;
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.mv-text-wrapper.expanded {
    max-height: 1000px;
    -webkit-mask-image: none;
    mask-image: none;
}

.mv-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    background: none;
    border: none;
    color: var(--warm-red);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
}

.mv-toggle:hover {
    opacity: 0.75;
}

.mv-toggle i {
    transition: transform 0.3s ease;
}

.mv-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.values-section {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--warm-red);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.value-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.story-culture-section {
    padding: var(--section-padding);
    background: var(--white);
}

.story-culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.story-culture-card,
.story-history-card {
    padding: 34px 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(212, 165, 116, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-culture-card:hover,
.story-history-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.story-culture-card h3,
.story-history-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--warm-red);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.story-culture-card p,
.story-history-card p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.story-history-section {
    padding: var(--section-padding);
    background: var(--light-gold);
}

.story-history-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.story-history-date {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(125, 34, 12, 0.1);
    color: var(--warm-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ===========================
   CONTACT PAGE STYLES
   =========================== */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info-section h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--warm-red);
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 40px;
    width: 70px;
    height: 70px;
    background-color: var(--light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--warm-red);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-form-section {
    background: #ffffff;
    border: 1px solid #e8e0d6;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.07);
}

.contact-form-section h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--warm-red);
    margin-bottom: 28px;
    letter-spacing: 1px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0ebe2;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #6b5a4e;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #ddd5c8;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background-color: #faf8f5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b5a99e;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23740403' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--warm-red);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(116, 4, 3, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* ===========================
   FRANCHISE PAGE STYLES
   =========================== */
.franchise-hero {
    position: relative;
    height: 70vh;
    background: linear-gradient(rgba(139, 26, 26, 0.8), rgba(169, 50, 38, 0.8)),
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.why-franchise {
    padding: var(--section-padding);
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.benefit-card {
    padding: 50px 40px;
    background-color: var(--cream);
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
}

.benefit-icon {
    font-size: 70px;
    margin-bottom: 25px;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 34px;
    color: var(--warm-red);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.benefit-card p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.7;
}

.investment-section {
    padding: var(--section-padding);
    background-color: var(--light-gold);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.franchise-package-header {
    max-width: 760px;
    margin: 0 auto 70px;
}

.franchise-package-eyebrow {
    margin-bottom: 18px;
    color: var(--warm-red);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 18px;
}

.franchise-package-eyebrow::before,
.franchise-package-eyebrow::after {
    content: "";
    width: 62px;
    height: 1px;
    background: rgba(125, 34, 12, 0.28);
}

.investment-grid--feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 28px;
}

.investment-card {
    padding: 50px 40px;
    background-color: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.investment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.investment-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--warm-red);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.investment-card .amount {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.investment-card p {
    font-size: 18px;
    color: var(--text-light);
}

.investment-card--package,
.investment-card--requirements {
    position: relative;
    overflow: hidden;
    padding: 38px 34px 34px;
    border-radius: 18px;
    border: 1px solid rgba(107, 68, 35, 0.08);
    box-shadow: 0 20px 45px rgba(56, 32, 16, 0.08);
    text-align: left;
}

.investment-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-red), #9e3e23 68%, rgba(158, 62, 35, 0.22));
}

.investment-card__eyebrow {
    margin: 0 0 10px;
    color: var(--warm-red);
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.investment-card--package h3,
.investment-card--requirements h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 22px;
    letter-spacing: 0.01em;
}

.investment-card__subhead {
    margin-bottom: 26px;
    color: var(--text-light);
    font-size: 19px;
}

.investment-card--package p,
.investment-card--requirements p {
    font-size: 19px;
    line-height: 1.8;
}

.investment-card__divider {
    width: 100%;
    height: 1px;
    margin: 28px 0 22px;
    background: linear-gradient(90deg, rgba(125, 34, 12, 0.22), rgba(125, 34, 12, 0.04));
}

.investment-card--package h4 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 22px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.investment-requirements-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.investment-requirements-list li {
    position: relative;
    padding: 15px 0 15px 28px;
    color: var(--text-light);
    font-size: 19px;
    line-height: 1.65;
    border-bottom: 1px solid rgba(107, 68, 35, 0.12);
}

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

.investment-requirements-list li::before {
    content: "";
    position: absolute;
    top: 23px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--warm-red);
    box-shadow: 0 0 0 4px rgba(125, 34, 12, 0.12);
}

.franchise-inquiry {
    padding: var(--section-padding);
    background-color: var(--white);
}

.inquiry-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.inquiry-content h2 {
    text-align: center;
    margin-bottom: 20px;
}

.inquiry-content > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.8;
}

.franchise-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ===========================
   RESPONSIVE - ADDITIONAL
   =========================== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .investment-grid--feature {
        grid-template-columns: 1fr;
    }

    .story-culture-grid,
    .story-history-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .benefits-grid,
    .investment-grid,
    .values-grid,
    .mv-grid,
    .story-culture-grid,
    .story-history-grid {
        grid-template-columns: 1fr;
    }

    .franchise-package-header {
        margin-bottom: 44px;
    }

    .franchise-package-eyebrow {
        gap: 10px;
        letter-spacing: 0.18em;
        font-size: 12px;
    }

    .franchise-package-eyebrow::before,
    .franchise-package-eyebrow::after {
        width: 28px;
    }

    .investment-card--package,
    .investment-card--requirements {
        padding: 30px 22px 26px;
        border-radius: 14px;
    }

    .investment-card--package h3,
    .investment-card--requirements h3 {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   LOGO IMAGE STYLING
   =========================== */
.logo {
    grid-column: 2;
    text-align: center;
}

.logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 92px;
    width: auto;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Adjust for different screen sizes */
@media (max-width: 1024px) {
    .logo-image {
        height: 84px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 76px;
    }
}

/* ===========================
   ORDERING + CHECKOUT PAGES
   =========================== */
.order-page,
.checkout-page {
    padding: 80px 0 110px;
    background-color: var(--white);
}

.order-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    align-items: start;
}

.order-menu-panel,
.order-cart-panel,
.checkout-form,
.checkout-summary {
    background: var(--cream);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.order-menu-panel,
.checkout-form {
    padding: 30px;
}

.order-cart-panel,
.checkout-summary {
    padding: 26px;
    position: sticky;
    top: 120px;
}

.section-header.left {
    text-align: left;
    margin-bottom: 35px;
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.order-item-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.order-item-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.order-item-body {
    padding: 18px;
}

.order-item-body h3 {
    font-family: var(--font-heading);
    color: var(--warm-red);
    font-size: 26px;
    margin-bottom: 8px;
}

.order-item-body p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 14px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

.order-cart-panel h3,
.checkout-summary h3,
.checkout-form h2 {
    font-family: var(--font-heading);
    color: var(--warm-red);
    margin-bottom: 10px;
}

.order-cart-muted {
    color: var(--text-light);
    margin-bottom: 18px;
}

.cart-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.cart-line.grand {
    font-size: 18px;
    color: var(--warm-red);
    font-weight: 700;
}

.order-checkout-btn {
    width: 100%;
    text-align: center;
    margin-top: 16px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.checkout-field {
    margin-bottom: 14px;
}

.checkout-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--white);
}

.checkout-field textarea {
    min-height: 110px;
    resize: vertical;
}

.ordering-status {
    margin-bottom: 24px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.6;
    border: 1px solid transparent;
}

.ordering-status.is-info {
    background: #fff7e5;
    color: #7a4b00;
    border-color: #f0d597;
}

.ordering-status.is-success {
    background: #eef9f1;
    color: #136b34;
    border-color: #acd7b8;
}

.ordering-status.is-error {
    background: #fff1f1;
    color: #9f1f1f;
    border-color: #efb1b1;
}

.ordering-location-info {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ordering-location-info.is-loading {
    background: #f0f4ff;
    border: 1px solid #c7d7fa;
    color: #3a5fd9;
}

.ordering-location-info.is-success {
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    color: #276749;
}

.ordering-location-info.is-error {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    color: #c53030;
}

.btn-secondary-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #555;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.btn-secondary-sm:hover {
    background: #f5f5f5;
    border-color: #aaa;
}
.btn-secondary-sm:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ordering-branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.ordering-branch-card {
    background: var(--white);
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px 20px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    text-align: center;
}

.ordering-branch-card:hover {
    border-color: var(--warm-red);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.ordering-branch-card__name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.ordering-branch-card__address {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.ordering-branch-card__hours {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.ordering-branch-card__btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--warm-red);
    color: var(--white);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.ordering-branch-card__btn:hover {
    background: var(--maroon);
}

.ordering-branch-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light-gold);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.ordering-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.ordering-tab {
    border: 1px solid rgba(125, 34, 12, 0.18);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 999px;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ordering-tab:hover,
.ordering-tab.is-active {
    background: var(--warm-red);
    color: var(--white);
    border-color: var(--warm-red);
}

.ordering-empty,
.ordering-empty-cart,
.ordering-helper {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

.ordering-empty {
    margin-bottom: 20px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 12px;
    border: 1px dashed rgba(125, 34, 12, 0.2);
}

.ordering-empty-cart {
    margin-bottom: 18px;
}

.ordering-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ordering-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ordering-card__media {
    position: relative;
}

.ordering-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.ordering-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.ordering-card__body {
    padding: 18px;
}

.ordering-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.ordering-card__category {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gold);
}

.ordering-card__price {
    color: var(--warm-red);
    font-size: 14px;
}

.ordering-card__title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--warm-red);
    margin-bottom: 8px;
}

.ordering-card__text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.ordering-card__button {
    width: 100%;
    text-align: center;
}

.ordering-cart__item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(107, 68, 35, 0.12);
}

.ordering-cart__item:last-child {
    border-bottom: 0;
}

.ordering-cart__thumb {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 10px;
    background: #f5f1eb;
}

.ordering-cart__content p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 10px;
}

.ordering-cart__head,
.ordering-cart__footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.ordering-cart__head {
    margin-bottom: 6px;
}

.ordering-cart__head h5 {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
}

.ordering-cart__remove {
    border: 0;
    background: transparent;
    color: var(--warm-red);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.ordering-qty {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(107, 68, 35, 0.08);
    padding: 6px 10px;
    border-radius: 999px;
}

.ordering-qty button {
    border: 0;
    background: transparent;
    color: var(--warm-red);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    width: 20px;
}

.ordering-qty span {
    min-width: 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.ordering-payment-box {
    margin-bottom: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px dashed rgba(125, 34, 12, 0.24);
    border-radius: 12px;
}

.ordering-payment-box strong {
    color: var(--warm-red);
}

.ty-captcha-note {
    font-size: 13px;
    color: #6c665f;
    display: block;
}

.ty-captcha-note.is-error {
    color: #b42318;
}

.ty-captcha-widget {
    margin-top: 10px;
}

.ordering-payment-qr {
    width: 180px;
    max-width: 100%;
    margin-top: 14px;
    border-radius: 12px;
    display: block;
}

.checkout-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .order-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .order-cart-panel,
    .checkout-summary {
        position: static;
    }

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

@media (max-width: 768px) {
    .order-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .ordering-card__meta,
    .ordering-cart__head,
    .ordering-cart__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-menu-panel,
    .order-cart-panel,
    .checkout-form,
    .checkout-summary {
        padding: 20px;
    }
}

/* ===========================
   FRANCHISE APPLICATION PAGE
   =========================== */
.franchise-hero--application {
    background:
        linear-gradient(rgba(92, 22, 14, 0.72), rgba(130, 43, 28, 0.7)),
        radial-gradient(circle at top, rgba(244, 209, 142, 0.28), transparent 36%),
        url('images/franchise-bg.jpg') center/cover;
}

.franchise-intro-section,
.franchise-process-section,
.franchise-faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

.franchise-intro-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 32px;
    align-items: start;
}

.franchise-intro-card,
.franchise-info-card,
.franchise-application-shell,
.process-step-box,
.franchise-faq-card {
    background: var(--cream);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.franchise-intro-card {
    padding: 34px;
}

.franchise-info-stack {
    display: grid;
    gap: 20px;
}

.franchise-info-card {
    padding: 26px;
}

.franchise-info-card.accent {
    background: linear-gradient(135deg, #fff5de 0%, #f6ead8 100%);
}

.franchise-eyebrow {
    color: var(--warm-red);
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.franchise-intro-copy {
    color: var(--text-light);
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.franchise-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.franchise-stat {
    background: var(--white);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
}

.franchise-stat strong {
    display: block;
    color: var(--warm-red);
    font-size: 24px;
    font-family: var(--font-heading);
    margin-bottom: 6px;
}

.franchise-stat span,
.franchise-check-list li,
.franchise-info-card p,
.process-step-box p,
.franchise-faq-card p {
    color: var(--text-light);
    font-size: 19px;
    line-height: 1.7;
}

.franchise-check-list {
    padding-left: 18px;
    margin: 0;
}

.franchise-check-list li + li {
    margin-top: 10px;
}

.benefit-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 25px;
    border-radius: 999px;
    background: rgba(212, 165, 116, 0.2);
    color: var(--warm-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.franchise-process-grid,
.franchise-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-step-box,
.franchise-faq-card {
    padding: 28px 24px;
}

.step-num-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(139, 58, 58, 0.1);
    color: var(--warm-red);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.process-step-box h4,
.franchise-faq-card h3,
.franchise-info-card h3 {
    color: var(--warm-red);
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 26px;
}

.franchise-application-section {
    padding: 90px 0 110px;
    background: linear-gradient(180deg, #fff 0%, #f7efe5 100%);
}

.franchise-application-shell {
    padding: 34px;
}

.franchise-application-intro {
    text-align: center;
    margin-bottom: 30px;
}

.franchise-progress {
    margin-bottom: 28px;
}

.progress-track {
    height: 6px;
    background: rgba(139, 58, 58, 0.12);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 18px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--warm-red) 100%);
    transition: width 0.3s ease;
}

.step-indicators {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.step-indicator {
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.45;
    transition: opacity 0.25s ease;
}

.step-indicator.active,
.step-indicator.completed {
    opacity: 1;
}

.indicator-num {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(139, 58, 58, 0.2);
    color: var(--warm-red);
    font-size: 14px;
    font-weight: 700;
}

.step-indicator.active .indicator-num,
.step-indicator.completed .indicator-num {
    background: var(--warm-red);
    color: var(--white);
    border-color: var(--warm-red);
}

.indicator-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.franchise-application-form {
    display: grid;
    gap: 20px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.franchise-step-header {
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(107, 68, 35, 0.12);
}

.franchise-step-header h3 {
    margin-bottom: 6px;
    color: var(--warm-red);
    font-family: var(--font-heading);
    font-size: 28px;
}

.franchise-step-header p {
    color: var(--text-light);
    font-size: 18px;
}

.franchise-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.franchise-application-form .form-group {
    margin-bottom: 18px;
}

.franchise-application-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
}

.franchise-application-form .form-control {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 13px 14px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 18px;
}

.franchise-application-form textarea.form-control {
    min-height: 110px;
    resize: vertical;
}

.franchise-review-box {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.franchise-review-box h4 {
    color: var(--warm-red);
    margin-bottom: 8px;
}

.franchise-consent {
    display: grid;
    gap: 12px;
    margin-bottom: 10px;
}

.franchise-consent label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.franchise-consent input[type="checkbox"] {
    margin-top: 4px;
}

.form-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .franchise-intro-layout,
    .franchise-process-grid,
    .franchise-faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .franchise-stat-grid,
    .step-indicators,
    .franchise-form-grid,
    .franchise-intro-layout,
    .franchise-process-grid,
    .franchise-faq-grid {
        grid-template-columns: 1fr;
    }

    .franchise-application-shell,
    .franchise-intro-card,
    .franchise-info-card {
        padding: 24px;
    }

    .form-nav {
        flex-direction: column;
    }
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 16px;
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(169, 50, 38, 0.12);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item[open] {
    border-color: rgba(169, 50, 38, 0.3);
}

.faq-question {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 22px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--warm-red);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 22px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--warm-red);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
}

/* ===========================
   BLOG SECTION - Homepage
   =========================== */
.s-blog {
    padding: var(--section-padding);
    background-color: var(--white);
}

.blogSwiper {
    padding-bottom: 60px !important;
}

.blog-box {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.blog-box .top-content {
    position: relative;
}

.blog-box .top-content .image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-box .top-content .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-box:hover .top-content .image img {
    transform: scale(1.05);
}

.blog-box .top-content .meta {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--warm-red);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.2;
}

.blog-box .top-content .meta h4 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.blog-box .top-content .meta p {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.blog-box .top-content .title {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 20px 24px 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.blog-box .top-content .title:hover {
    color: var(--warm-red);
}

.blog-box .bottom-content {
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-box .bottom-content ul {
    list-style: none;
    display: flex;
    gap: 16px;
    padding: 0;
    margin: 0 0 12px;
}

.blog-box .bottom-content ul li a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.blog-box .bottom-content ul li.author a {
    color: var(--warm-red);
}

.blog-box .bottom-content ul li a:hover {
    color: var(--warm-red);
}

.blog-box .bottom-content .line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 14px;
    border-radius: 2px;
}

.blog-box .bottom-content .text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-read {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--warm-red);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.btn-read:hover {
    gap: 12px;
    color: var(--maroon);
}

.blog-cta {
    text-align: center;
    margin-top: 48px;
}

.blogSwiper .swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.4;
}

.blogSwiper .swiper-pagination-bullet-active {
    background: var(--warm-red);
    opacity: 1;
}

.blogSwiper .swiper-button-prev,
.blogSwiper .swiper-button-next {
    color: var(--warm-red);
    top: 40%;
}

.blogSwiper .swiper-button-prev:after,
.blogSwiper .swiper-button-next:after {
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .blog-box .top-content .image {
        height: 200px;
    }

    .blog-box .top-content .title {
        font-size: 19px;
    }
}

@media (max-width: 480px) {
    .blogSwiper {
        padding-bottom: 48px !important;
    }
}

/* ===========================
   BLOGS LISTING PAGE
   =========================== */
.blogs-listing-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.blog-listing-status {
    padding: 32px;
    border-radius: 16px;
    background: var(--light-gold);
    color: var(--text-light);
    text-align: center;
    font-size: 16px;
    margin-bottom: 32px;
}

.blog-listing-status.is-error {
    background: #fff1ef;
    color: var(--warm-red);
}

.blog-listing-grid {
    display: grid;
    gap: 48px;
}

/* Blog Box 5 - Listing Card */
.blog-box-5 {
    border-bottom: 1px solid rgba(93, 64, 55, 0.1);
    padding-bottom: 48px;
}

.blog-box-5:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-box-5 .top-content {
    position: relative;
    margin-bottom: 28px;
}

.blog-box-5 .top-content .image {
    overflow: hidden;
    border-radius: 12px;
}

.blog-box-5 .top-content .image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-box-5:hover .top-content .image img {
    transform: scale(1.03);
}

.blog-box-5 .top-content .meta {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--warm-red);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.2;
}

.blog-box-5 .top-content .meta h4 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    color: var(--white);
}

.blog-box-5 .top-content .meta p {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.blog-box-5 .bottom-content .d-flex {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.blog-box-5 .bottom-content .left {
    flex: 1;
}

.blog-box-5 .bottom-content .right {
    width: 240px;
    flex-shrink: 0;
}

.blog-page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.blog-page-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-box-5 .bottom-content .left .h5.title {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 16px;
    transition: color 0.2s ease;
}

.blog-box-5 .bottom-content .left .h5.title:hover {
    color: var(--warm-red);
}

.blog-box-5 .bottom-content .left .line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 16px;
}

.blog-box-5 .bottom-content .left .text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-box-5 .bottom-content .left .tf-button.style3 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--warm-red);
    color: var(--warm-red);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-box-5 .bottom-content .left .tf-button.style3:hover {
    background: var(--warm-red);
    color: var(--white);
}

/* Right sidebar info */
.blog-box-5 .bottom-content .right-box {
    background: var(--light-gold);
    border-radius: 12px;
    padding: 24px;
}

.blog-box-5 .bottom-content .right-box .box-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blog-box-5 .bottom-content .right-box .box-list li {
    font-size: 13px;
    color: var(--text-light);
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(93, 64, 55, 0.1);
}

.blog-box-5 .bottom-content .right-box .box-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.blog-box-5 .bottom-content .right-box .box-list li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.2s ease;
}

.blog-box-5 .bottom-content .right-box .box-list li a span {
    font-weight: 700;
    color: var(--warm-red);
    margin-right: 4px;
}

.blog-box-5 .bottom-content .right-box .box-list li a:hover {
    color: var(--warm-red);
}

/* Share social list */
.blog-box-5 .list-social {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.blog-box-5 .list-social li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    color: var(--warm-red);
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-box-5 .list-social li a:hover {
    background: var(--warm-red);
    color: var(--white);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 60px 0 0;
}

.blog-pagination li button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(93, 64, 55, 0.2);
    border-radius: 6px;
    background: transparent;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-pagination li button:hover {
    background: var(--warm-red);
    color: var(--white);
    border-color: var(--warm-red);
}

.blog-pagination li.active button {
    background: var(--warm-red);
    color: var(--white);
    border-color: var(--warm-red);
}

.blog-pagination li.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

@media (max-width: 991px) {
    .blog-box-5 .bottom-content .d-flex {
        flex-direction: column;
        gap: 24px;
    }

    .blog-box-5 .bottom-content .right {
        width: 100%;
    }

    .blog-box-5 .bottom-content .right-box .box-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .blog-box-5 .bottom-content .right-box .box-list li {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .blog-box-5 .top-content .image img {
        height: 280px;
    }

    .blog-box-5 .bottom-content .left .h5.title {
        font-size: 22px;
    }
}

/* ===========================
   BLOG SINGLE PAGE
   =========================== */
.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
    flex-wrap: wrap;
}

.blog-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-breadcrumb a:hover {
    color: var(--white);
}

.blog-single-section {
    padding: var(--section-padding);
    background: var(--white);
}

.blog-single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: flex-start;
}

/* Status */
.blog-single-status {
    padding: 32px;
    border-radius: 16px;
    background: var(--light-gold);
    color: var(--text-light);
    text-align: center;
    font-size: 16px;
    margin-bottom: 32px;
}

.blog-single-status.is-error {
    background: #fff1ef;
    color: var(--warm-red);
}

/* Hidden states */
.blog-single-article[hidden],
.blog-single-post-footer[hidden],
.blog-single-comments[hidden],
.blog-single-sidebar[hidden] {
    display: none !important;
}

/* Hero image */
.blog-single-hero-link {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 28px;
}

.blog-single-hero-img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

/* Meta bar */
.blog-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin-bottom: 20px;
}

.blog-single-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Title */
.blog-single-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.blog-single-divider {
    width: 56px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 20px;
}

.blog-single-excerpt {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

/* HTML Content */
.blog-html-content {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.9;
}

.blog-html-content h1,
.blog-html-content h2,
.blog-html-content h3,
.blog-html-content h4,
.blog-html-content h5,
.blog-html-content h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin: 32px 0 14px;
}

.blog-html-content p,
.blog-html-content ul,
.blog-html-content ol,
.blog-html-content blockquote {
    margin-bottom: 20px;
}

.blog-html-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 20px;
}

.blog-html-content blockquote {
    padding: 16px 24px;
    border-left: 4px solid var(--gold);
    background: var(--light-gold);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* Post Footer */
.blog-single-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid rgba(93, 64, 55, 0.1);
    border-bottom: 1px solid rgba(93, 64, 55, 0.1);
    margin: 40px 0;
}

.blog-detail-tagline {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-red);
    background: var(--light-gold);
    padding: 6px 14px;
    border-radius: 4px;
}

.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
}

.blog-share-list {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-share-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-gold);
    color: var(--warm-red);
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-share-list li a:hover {
    background: var(--warm-red);
    color: var(--white);
}

/* Comments */
.blog-single-comments {
    margin-top: 20px;
}

.blog-comments-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.blog-comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.blog-comment-item {
    padding: 24px;
    border-radius: 14px;
    background: var(--light-gold);
}

.blog-comment-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.blog-comment-head h5 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.blog-comment-date {
    font-size: 13px;
    color: var(--text-light);
    white-space: nowrap;
}

.blog-comment-empty {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 32px;
}

.blog-comment-note {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Comment Form */
.blog-comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-comment-form-group {
    margin-bottom: 16px;
}

.blog-comment-form input,
.blog-comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(93, 64, 55, 0.2);
    border-radius: 8px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.blog-comment-form input:focus,
.blog-comment-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232, 197, 71, 0.1);
}

.blog-comment-form textarea {
    resize: vertical;
}

.blog-captcha-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px;
    margin-top: 8px;
}

.blog-form-status {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 500;
}

.blog-form-status.is-error { color: var(--warm-red); }
.blog-form-status.is-success { color: var(--leaf-green); }

/* Sidebar */
.blog-sidebar-widget {
    background: var(--light-gold);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 28px;
}

.blog-sidebar-unit {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--warm-red);
    margin-bottom: 10px;
}

.blog-sidebar-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-sidebar-summary {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.blog-sidebar-widget-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

/* Latest posts */
.blog-latest-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-latest-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.blog-latest-item:hover {
    opacity: 0.8;
}

.blog-latest-thumb img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.blog-latest-item .info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-latest-item .title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-latest-meta {
    font-size: 12px;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-single-layout {
        grid-template-columns: 1fr 280px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .blog-single-layout {
        grid-template-columns: 1fr;
    }

    .blog-single-title {
        font-size: 28px;
    }

    .blog-single-hero-img {
        max-height: 300px;
    }

    .blog-comment-form-row {
        grid-template-columns: 1fr;
    }

    .blog-comment-head {
        flex-direction: column;
    }
}

/* ===========================
   404 PAGE
   =========================== */
.page-404 {
    padding: 120px 0;
    background: url('images/pages-bg.jpg') center center / cover no-repeat;
    position: relative;
}

.page-404::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 248, 231, 0.88);
}

.page-404 .container {
    position: relative;
    z-index: 1;
}

.p404-main {
    text-align: center;
}

.p404-numb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 32px;
}

.p404-numb h2 {
    font-family: var(--font-heading);
    font-size: 200px;
    font-weight: 700;
    color: var(--warm-red);
    line-height: 1;
    margin: 0;
}

.p404-numb img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.p404-main h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p404-main p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .p404-numb h2 {
        font-size: 120px;
    }

    .p404-numb img {
        width: 120px;
    }

    .p404-numb {
        gap: 20px;
    }

    .p404-main h3 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .p404-numb h2 {
        font-size: 80px;
    }

    .p404-numb img {
        width: 80px;
    }

    .p404-numb {
        gap: 12px;
    }

    .p404-main h3 {
        font-size: 24px;
    }
}
