/* ============================================
   Fork Spoon Knife - Premium Restaurant Website
   ============================================ */

/* === CSS Variables === */
:root {
    --gold: #C8973E;
    --gold-light: #D4AF37;
    --gold-dark: #A67C2E;
    --red: #E23744;
    --red-dark: #c82f3b;
    --green-whatsapp: #25D366;
    --bg-cream: #FAF5EE;
    --bg-white: #FFFFFF;
    --bg-dark: #1C1409;
    --text-dark: #1A1A1A;
    --text-body: #666666;
    --text-light: #999999;
    --border-light: #E8E0D4;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-gold: 0 4px 20px rgba(200,151,62,0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
}

/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: -0.025em;
    line-height: 1.15;
}

em {
    font-style: italic;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

/* === Section Headers === */
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-title em {
    color: var(--gold);
}

.section-description {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200,151,62,0.1);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
}

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

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-link:hover {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icons-header {
    display: flex;
    gap: 8px;
}

.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    transition: var(--transition);
}

.social-icon-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-reservation {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gold-dark);
    position: relative;
}

.btn-reservation:hover {
    background: rgba(200,151,62,0.05);
}

.book-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--red);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.btn-order-now {
    padding: 10px 22px;
    background: var(--red);
    color: white;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(226,55,68,0.25);
    transition: var(--transition);
}

.btn-order-now:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(226,55,68,0.35);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

/* Mobile Nav */
.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 20px 24px;
    background: white;
    border-top: 1px solid var(--border-light);
}

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

.nav-link-mobile {
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-link-mobile:hover {
    color: var(--gold);
}

.mobile-order {
    margin-top: 16px;
    text-align: center;
    width: 100%;
    display: block;
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(28, 20, 9, 0.55) 0%,
        rgba(28, 20, 9, 0.70) 50%,
        rgba(28, 20, 9, 0.80) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 24px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.divider-icon {
    color: var(--gold);
    font-size: 0.8rem;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.5vw, 0.95rem);
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 16px;
}

.hero-title em {
    font-family: var(--font-display);
    font-style: italic;
    color: white;
}

.hero-description {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 14px 36px;
    background: var(--gold);
    color: var(--bg-dark);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(200,151,62,0.35);
}

.btn-hero-secondary {
    padding: 14px 36px;
    background: var(--red);
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 20px rgba(226,55,68,0.3);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(226,55,68,0.45);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.scroll-arrow {
    animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ============================================
   OUR STORY SECTION
   ============================================ */
.section-story {
    background: var(--bg-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image-wrapper {
    border-radius: 16px;
    overflow: visible;
    position: relative;
}

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

.story-image-wrapper:hover .story-image {
    transform: scale(1.02);
}

.story-badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background: white;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    z-index: 5;
    text-align: left;
    line-height: 1.2;
}

.badge-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.badge-number sup {
    font-size: 1rem;
    color: var(--gold);
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-body);
    letter-spacing: 0.02em;
}

.story-image-small {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 160px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
    z-index: 5;
}

.story-image-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-quote {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold-dark);
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin: 20px 0;
    line-height: 1.6;
}

.story-attribution {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.story-attr-logo {
    width: 48px;
    height: auto;
}

.story-attribution strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.story-attribution span {
    font-size: 0.8rem;
    color: var(--text-body);
}

.arrow-icon {
    transition: transform var(--transition);
}

.group:hover .arrow-icon {
    transform: translateX(4px);
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.section-founder {
    background: var(--bg-cream);
}

.founder-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.founder-image-wrapper {
    border-radius: 16px;
    overflow: visible;
    position: relative;
    position: sticky;
    top: 100px;
}

.founder-image {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    object-position: top;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.founder-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(28,20,9,0.85);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-align: center;
    z-index: 5;
}

.founder-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.founder-badge span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em;
}

.founder-quote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gold-dark);
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin: 20px 0;
    line-height: 1.6;
}

.founder-attribution {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.founder-attr-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-display);
}

.founder-attribution strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.founder-attribution span {
    font-size: 0.8rem;
    color: var(--text-body);
}

/* ============================================
   MENU SECTION
   ============================================ */
.section-menu {
    background: var(--bg-white);
}

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

.menu-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(200,151,62,0.12);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.menu-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.menu-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(200,151,62,0.9);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.menu-card-content {
    padding: 20px;
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.menu-card-price {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.menu-card-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 14px;
}

.menu-card-order {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.menu-card-order:hover {
    color: var(--gold-dark);
}

.menu-order-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-menu-zomato {
    padding: 16px 48px;
    font-size: 1rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.section-why {
    background: var(--bg-cream);
    padding: 80px 0;
}

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

.why-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius);
    background: white;
    transition: var(--transition);
}

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

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(200,151,62,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.why-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.why-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.section-gallery {
    background: var(--bg-white);
}

.gallery-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

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

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

/* ============================================
   CELEBRATIONS SECTION
   ============================================ */
.section-celebrations {
    background: var(--bg-cream);
}

.celebration-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.celebration-birthday {
    background: white;
}

.celebration-wedding {
    background: var(--bg-dark);
    color: white;
}

.celebration-images {
    padding: 24px;
}

.celebration-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: 100%;
}

.celebration-collage img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform var(--transition);
}

.celebration-collage img:hover {
    transform: scale(1.04);
}

.celebration-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.celebration-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.celebration-title em {
    color: var(--gold);
}

.celebration-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 20px;
}

.celebration-content-light .celebration-text {
    color: rgba(255,255,255,0.7);
}

.celebration-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}

.celebration-features li {
    font-size: 0.85rem;
    color: var(--text-body);
}

.celebration-content-light .celebration-features li {
    color: rgba(255,255,255,0.65);
}

.btn-celebration {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--gold);
    color: var(--bg-dark);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    width: fit-content;
    transition: var(--transition);
}

.btn-celebration:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-celebration-light {
    border: 1.5px solid var(--gold);
    background: transparent;
    color: var(--gold);
}

.btn-celebration-light:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

/* ============================================
   CTA SECTION
   ============================================ */
.section-cta {
    position: relative;
    padding: 80px 0;
    background: var(--gold);
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.cta-inner {
    position: relative;
    text-align: center;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.cta-title em {
    font-style: italic;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(28,20,9,0.7);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta-zomato {
    padding: 14px 36px;
    background: var(--red);
    color: white;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(226,55,68,0.3);
    transition: var(--transition);
}

.btn-cta-zomato:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(226,55,68,0.4);
}

.btn-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--bg-dark);
    color: white;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.section-contact {
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    margin-top: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200,151,62,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.5;
}

.contact-email-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.contact-email-link:hover {
    color: var(--gold-dark);
}

.contact-divider {
    width: 100%;
    height: 1px;
    background: var(--border-light);
    margin: 8px 0 24px;
}

.btn-need-help {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #25D366;
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.btn-need-help:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.map-open-link {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: white;
    color: #1a73e8;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    z-index: 5;
    transition: var(--transition);
}

.map-open-link:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-box {
    background: white;
    border-radius: 12px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-bottom: 20px;
}

.footer-logo {
    height: 48px;
    width: auto;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.08);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

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

.footer-newsletter-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin-bottom: 4px;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 8px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px 0 0 8px;
    color: white;
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

.footer-newsletter-form input::placeholder {
    color: rgba(255,255,255,0.35);
}

.footer-newsletter-form input:focus {
    border-color: var(--gold);
}

.footer-newsletter-form button {
    padding: 12px 20px;
    background: var(--gold);
    color: var(--bg-dark);
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.footer-newsletter-form button:hover {
    background: var(--gold-light);
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

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

.fssai-badge {
    height: 40px;
    width: auto;
    opacity: 0.7;
    border-radius: 4px;
}

.fssai-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.03em;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--green-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    transition: var(--transition);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 4px 24px rgba(37,211,102,0.55); }
}

/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Staggered children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }

    .social-icons-header {
        display: none;
    }

    .btn-reservation {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image-wrapper {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .gallery-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .celebration-card {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .section {
        padding: 60px 0;
    }

    .header-inner {
        height: 64px;
    }

    .logo-img {
        height: 36px;
    }

    .btn-order-now {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .story-image {
        height: auto;
    }

    .story-badge {
        left: 10px;
        top: 10px;
    }

    .story-image-small {
        right: 10px;
        bottom: -20px;
        width: 120px;
        height: 90px;
    }

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

    .founder-image-wrapper {
        max-width: 300px;
    }

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

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

    .gallery-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .celebration-content {
        padding: 28px 24px;
    }

    .celebration-features {
        grid-template-columns: 1fr;
    }

    .celebration-collage {
        gap: 8px;
    }

    .celebration-collage img {
        height: 140px;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-zomato,
    .btn-cta-call {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .contact-map iframe {
        height: 300px;
    }
}
