/* ===================================
   KHAIRA PUNJABI DHABA — REDESIGN v2
   Editorial / Premium Visual System
   =================================== */

/* ---------- VARIABLES ---------- */
:root {
    --c-maroon: #7A1A1A;
    --c-maroon-deep: #4A0E0E;
    --c-maroon-soft: #9B3030;
    --c-gold: #D4A843;
    --c-gold-bright: #F0C75E;
    --c-gold-dim: #b58d35;
    --c-cream: #FAF5EB;
    --c-cream-dark: #F0E8D5;
    --c-dark: #1A1410;
    --c-dark-card: #231C14;
    --c-dark-soft: #2E2518;
    --c-text: #2B2520;
    --c-text-mid: #6B6158;
    --c-text-light: #A09686;
    --c-white: #FFFFFF;
    --c-border: rgba(180, 165, 140, 0.25);
    --c-border-light: rgba(255,255,255,0.08);
    --ff-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --ff-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-full: 9999px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--ff-body);
    color: var(--c-text);
    background: var(--c-cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: 0.3s var(--ease); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--ff-display); line-height: 1.15; color: var(--c-text); }
em { font-style: italic; }
strong { font-weight: 600; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; }

/* ---------- SECTION INTRO ---------- */
.section-intro { margin-bottom: 60px; }
.section-intro.section-intro-light .section-heading { color: var(--c-cream); }
.section-intro.section-intro-light .section-sub { color: rgba(250,245,235,0.6); }
.section-intro.section-intro-light .section-label span { color: var(--c-gold); }
.section-intro.section-intro-light .label-line { background: var(--c-gold); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--c-maroon);
    border-radius: 2px;
}

.section-label span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--c-maroon);
}

.section-heading {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    margin-bottom: 14px;
}

.section-heading em {
    color: var(--c-maroon);
}

.section-intro-light .section-heading em {
    color: var(--c-gold);
}

.section-sub {
    font-size: 1rem;
    color: var(--c-text-mid);
    max-width: 520px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(250,245,235,0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 var(--c-border);
    padding: 12px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--c-maroon);
    color: var(--c-gold);
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    transition: 0.3s var(--ease);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--c-white);
    transition: 0.3s var(--ease);
}
.logo-sub {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--c-gold);
    transition: 0.3s var(--ease);
}

.navbar.scrolled .logo-name { color: var(--c-text); }
.navbar.scrolled .logo-sub { color: var(--c-maroon); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
    position: relative;
}

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

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

.nav-links a:hover { color: var(--c-white); }

.navbar.scrolled .nav-links a { color: var(--c-text-mid); }
.navbar.scrolled .nav-links a:hover { color: var(--c-maroon); }
.navbar.scrolled .nav-links a::after { background: var(--c-maroon); }

.nav-actions { display: flex; align-items: center; gap: 16px; z-index: 10; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--c-maroon);
    color: var(--c-white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: var(--r-full);
    transition: 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--c-gold);
    color: var(--c-dark);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    z-index: 10;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: 0.3s var(--ease);
}

.navbar.scrolled .hamburger span { background: var(--c-text); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0E0906 0%, #1A130D 30%, #2A1A10 60%, #1E1510 100%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 200px;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(212,168,67,0.12);
    border: 1px solid rgba(212,168,67,0.25);
    border-radius: var(--r-full);
    margin-bottom: 28px;
}

.badge-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-gold);
}

.badge-sep { color: rgba(255,255,255,0.2); }

.hero-badge > span:last-child {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

.hero-title {
    color: var(--c-white);
    margin-bottom: 28px;
}

.hero-line {
    display: block;
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
}

.hero-line em {
    color: var(--c-gold);
    font-style: italic;
}

.text-stroke {
    -webkit-text-stroke: 2px var(--c-gold);
    color: transparent;
}

.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: var(--c-gold);
    color: var(--c-dark);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--r-full);
    transition: 0.3s var(--ease);
}

.btn-hero-primary:hover {
    background: var(--c-gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,168,67,0.35);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--r-full);
    transition: 0.3s var(--ease);
}

.btn-hero-outline:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    gap: 28px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

.trust-icon { font-size: 1rem; }

/* Hero Right - Image Stack */
.hero-right {
    display: flex;
    justify-content: center;
    perspective: 800px;
}

.hero-image-stack {
    position: relative;
    width: 420px;
    height: 500px;
}

.hero-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
    height: 460px;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-float {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 180px;
    height: 180px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 4px solid var(--c-dark);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    animation: floatImage 6s ease-in-out infinite;
}

.hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.hero-price-tag {
    position: absolute;
    top: 30px;
    right: 10px;
    background: var(--c-maroon);
    color: var(--c-white);
    padding: 12px 18px;
    border-radius: var(--r-md);
    text-align: center;
    box-shadow: 0 10px 30px rgba(122,26,26,0.5);
}

.price-from {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 2px;
}

.price-amount {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-gold);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--c-gold);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-strip {
    background: var(--c-maroon);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
    font-family: var(--ff-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-gold);
    padding: 0 24px;
    letter-spacing: 2px;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SIGNATURE DISHES
   ============================================ */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dish-card {
    background: var(--c-white);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: 0.4s var(--ease);
    border: 1px solid var(--c-border);
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: var(--c-gold);
}

.dish-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.dish-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s var(--ease);
}

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

.dish-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--c-maroon);
    color: var(--c-white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--r-full);
}

.dish-tag.tag-gold {
    background: var(--c-gold);
    color: var(--c-dark);
}

.dish-body {
    padding: 20px;
}

.dish-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.dish-meta h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.dish-cost {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--c-maroon);
    white-space: nowrap;
}

.dish-body p {
    font-size: 0.82rem;
    color: var(--c-text-mid);
    line-height: 1.5;
}

/* ============================================
   MENU
   ============================================ */
.section-dark {
    background: var(--c-dark);
    color: var(--c-cream);
}

.menu-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cat-btn {
    padding: 10px 28px;
    background: transparent;
    color: rgba(250,245,235,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-full);
    font-size: 0.85rem;
    font-weight: 500;
    transition: 0.3s var(--ease);
}

.cat-btn:hover {
    border-color: var(--c-gold);
    color: var(--c-gold);
}

.cat-btn.active {
    background: var(--c-gold);
    color: var(--c-dark);
    border-color: var(--c-gold);
    font-weight: 700;
}

.menu-list {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-row {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: 0.3s var(--ease);
    animation: fadeRowIn 0.4s ease forwards;
}

@keyframes fadeRowIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.menu-row:hover {
    padding-left: 12px;
}

.menu-name {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.menu-name h4 {
    font-family: var(--ff-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-cream);
}

.menu-pop {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 10px;
    background: rgba(212,168,67,0.15);
    color: var(--c-gold);
    border-radius: var(--r-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-dots {
    flex: 1;
    height: 1px;
    margin: 0 16px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255,255,255,0.1) 0px,
        rgba(255,255,255,0.1) 2px,
        transparent 2px,
        transparent 8px
    );
}

.menu-price {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-gold);
    flex-shrink: 0;
}

/* ============================================
   OUR STORY
   ============================================ */
.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-visual {
    position: relative;
}

.story-img-main {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.story-img-main img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.story-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 190px;
    height: 190px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 5px solid var(--c-cream);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.story-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-years {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 100px;
    height: 100px;
    border-radius: var(--r-full);
    background: var(--c-maroon);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(122,26,26,0.4);
    border: 3px solid var(--c-gold);
}

.years-num {
    font-family: var(--ff-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--c-gold);
    line-height: 1;
}

.years-num sup { font-size: 0.8rem; }

.years-label {
    font-size: 0.55rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-content .section-heading {
    margin-bottom: 20px;
}

.story-text {
    font-size: 0.95rem;
    color: var(--c-text-mid);
    line-height: 1.85;
    margin-bottom: 14px;
}

.story-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.sf-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--c-white);
    border-radius: var(--r-md);
    border: 1px solid var(--c-border);
    transition: 0.3s var(--ease);
}

.sf-item:hover {
    border-color: var(--c-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.sf-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.sf-item strong { font-size: 0.85rem; color: var(--c-text); display: block; }
.sf-item small { font-size: 0.75rem; color: var(--c-text-light); }

/* ============================================
   HIGHLIGHTS RIBBON
   ============================================ */
.highlights-ribbon {
    background: linear-gradient(135deg, var(--c-maroon-deep) 0%, var(--c-maroon) 50%, var(--c-maroon-deep) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.highlights-ribbon::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
    background-size: 200px;
    mix-blend-mode: overlay;
    opacity: 0.3;
    pointer-events: none;
}

.ribbon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.ribbon-item {
    text-align: center;
    padding: 24px 12px;
    border-radius: var(--r-md);
    transition: 0.3s var(--ease);
}

.ribbon-item:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
}

.ribbon-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.ribbon-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}

/* ============================================
   GALLERY
   ============================================ */
.section-gallery {
    background: var(--c-cream-dark);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    gap: 14px;
}

.gal-item {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: pointer;
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s var(--ease);
}

.gal-item:hover img {
    transform: scale(1.1);
}

.gal-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: var(--c-white);
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.3s var(--ease);
}

.gal-item:hover .gal-caption {
    opacity: 1;
    transform: translateY(0);
}

.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--c-dark-card);
    border: 1px solid var(--c-border-light);
    padding: 32px 28px;
    border-radius: var(--r-lg);
    transition: 0.3s var(--ease);
}

.review-card:hover {
    border-color: rgba(212,168,67,0.3);
    transform: translateY(-4px);
}

.rc-stars {
    color: var(--c-gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.rc-quote {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(250,245,235,0.7);
    margin-bottom: 24px;
    font-style: italic;
}

.rc-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rc-avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--r-full);
    background: var(--c-maroon);
    color: var(--c-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.rc-footer strong {
    display: block;
    font-size: 0.88rem;
    color: var(--c-cream);
}

.rc-footer span {
    font-size: 0.72rem;
    color: rgba(250,245,235,0.4);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.c-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: var(--c-white);
    border-radius: var(--r-md);
    border: 1px solid var(--c-border);
    transition: 0.3s var(--ease);
}

.c-card:hover {
    border-color: var(--c-maroon);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.c-icon {
    color: var(--c-maroon);
    flex-shrink: 0;
    margin-top: 2px;
}

.c-card strong {
    display: block;
    font-family: var(--ff-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-maroon);
    margin-bottom: 4px;
}

.c-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--c-text-mid);
}

.c-card a { color: var(--c-maroon); font-weight: 600; }
.c-card a:hover { text-decoration: underline; }

.contact-cta-group {
    display: flex;
    gap: 12px;
}

.btn-contact {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--c-maroon);
    color: var(--c-white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--r-full);
    transition: 0.3s var(--ease);
}

.btn-contact:hover {
    background: var(--c-maroon-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(122,26,26,0.3);
}

.btn-contact-outline {
    background: transparent;
    color: var(--c-maroon);
    border: 1.5px solid var(--c-maroon);
}

.btn-contact-outline:hover {
    background: var(--c-maroon);
    color: var(--c-white);
}

.contact-map {
    height: 440px;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid var(--c-border);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--c-dark);
    color: rgba(250,245,235,0.6);
    padding-top: 70px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer .logo-mark { background: var(--c-maroon); }
.footer .logo-name { color: var(--c-cream); }

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 300px;
}

.f-socials { display: flex; gap: 10px; }

.f-socials a {
    width: 38px;
    height: 38px;
    border-radius: var(--r-full);
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250,245,235,0.5);
    transition: 0.3s var(--ease);
}

.f-socials a:hover {
    background: var(--c-maroon);
    color: var(--c-gold);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--ff-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--c-cream);
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 0.84rem;
    color: rgba(250,245,235,0.5);
    padding: 4px 0;
    transition: 0.2s var(--ease);
}

.footer-col a:hover {
    color: var(--c-gold);
    padding-left: 6px;
}

.footer-col p {
    font-size: 0.84rem;
    padding: 4px 0;
}

.footer-col p a {
    display: inline;
    padding: 0;
    color: var(--c-gold);
}

.f-hours {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 0.78rem;
    color: rgba(250,245,235,0.3);
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.float-wa {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 54px;
    height: 54px;
    border-radius: var(--r-full);
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    z-index: 999;
    transition: 0.3s var(--ease);
    animation: floatBob 3s ease-in-out infinite;
}

.float-wa:hover { transform: scale(1.1); }

.float-call {
    position: fixed;
    bottom: 36px;
    right: 24px;
    width: 54px;
    height: 54px;
    border-radius: var(--r-full);
    background: var(--c-maroon);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(122,26,26,0.4);
    z-index: 999;
    transition: 0.3s var(--ease);
    animation: floatBob 3s ease-in-out infinite 0.5s;
}

.float-call:hover { transform: scale(1.1); }

@keyframes floatBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.float-top {
    position: fixed;
    bottom: 36px;
    left: 24px;
    width: 42px;
    height: 42px;
    border-radius: var(--r-full);
    background: var(--c-dark);
    color: var(--c-cream);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s var(--ease);
}

.float-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-top:hover {
    background: var(--c-maroon);
    transform: translateY(-2px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   CUSTOM SCROLLBAR & SELECTION
   ============================================ */
::selection { background: var(--c-maroon); color: var(--c-white); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-cream); }
::-webkit-scrollbar-thumb { background: var(--c-maroon-soft); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-maroon); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; padding: 140px 24px 80px; }
    .hero-right { display: none; }
    .dishes-grid { grid-template-columns: repeat(2, 1fr); }
    .story-layout { grid-template-columns: 1fr; gap: 50px; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-map { height: 300px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
    .ribbon-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    html { scroll-padding-top: 70px; }
    .section { padding: 80px 0; }

    .nav-links {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        background: rgba(14,9,6,0.97);
        backdrop-filter: blur(20px);
        transform: translateX(100%);
        transition: 0.4s var(--ease);
        z-index: 5;
    }

    .nav-links.active { transform: translateX(0); }
    .nav-links a { font-size: 1.3rem; color: var(--c-cream) !important; }

    .hamburger { display: flex; }

    .nav-cta span { display: none; }
    .nav-cta { padding: 10px 14px; }

    .hero-content { padding: 120px 20px 60px; }
    .hero-line { font-size: clamp(2.2rem, 9vw, 3.2rem); }
    .hero-scroll { display: none; }

    .dishes-grid { grid-template-columns: 1fr 1fr; }
    .menu-list { max-width: 100%; }

    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }
    .gal-tall { grid-row: span 1; }

    .reviews-track { grid-template-columns: 1fr; }
    .ribbon-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .story-features { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .section { padding: 60px 0; }
    .section-heading { font-size: 1.9rem; }
    .dishes-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { justify-content: center; text-align: center; }
    .hero-trust { flex-direction: column; gap: 10px; }
    .gallery-mosaic { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gal-wide { grid-column: span 1; }
    .ribbon-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-cta-group { flex-direction: column; }
    .contact-map { height: 250px; }
}
