/* ========================================
   Ember Indian Cuisine - Dramatic Design
   ======================================== */

:root {
    --color-bg: #1a1a1a;
    --color-bg-elevated: #242424;
    --color-bg-card: #2d2d2d;
    --color-text: #faf7f2;
    --color-text-muted: rgba(250, 247, 242, 0.65);
    --color-text-subtle: rgba(250, 247, 242, 0.4);
    --color-ember: #E85D04;
    --color-ember-glow: rgba(232, 93, 4, 0.4);
    --color-ember-dark: #c44d03;

    --font-display: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;

    --glow-sm: 0 0 20px var(--color-ember-glow);
    --glow-md: 0 0 40px var(--color-ember-glow);
    --glow-lg: 0 0 60px var(--color-ember-glow), 0 0 100px rgba(232, 93, 4, 0.2);

    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px var(--color-ember-glow)); }
    50% { filter: drop-shadow(0 0 40px var(--color-ember-glow)) drop-shadow(0 0 60px rgba(232, 93, 4, 0.3)); }
}

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(1.1); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-1%, -1%); }
    20% { transform: translate(1%, 1%); }
    30% { transform: translate(-1%, 1%); }
    40% { transform: translate(1%, -1%); }
    50% { transform: translate(-1%, 0); }
    60% { transform: translate(1%, 0); }
    70% { transform: translate(0, 1%); }
    80% { transform: translate(0, -1%); }
    90% { transform: translate(1%, 1%); }
}

/* Fade-in classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}
.fade-in.delay-1 { animation-delay: 0.2s; }
.fade-in.delay-2 { animation-delay: 0.4s; }
.fade-in.delay-3 { animation-delay: 0.6s; }
.fade-in.delay-4 { animation-delay: 0.8s; }

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: var(--color-ember);
    color: var(--color-text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
}

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

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h2 {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    letter-spacing: 0.1em;
}

h3 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    letter-spacing: 0.08em;
}

p {
    color: var(--color-text-muted);
}

.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text);
}

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

a:hover {
    color: var(--color-ember);
}

/* Section Labels - matches logo subtitle style */
.section-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--color-ember);
    margin-bottom: 1rem;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--color-ember);
    color: var(--color-text);
    box-shadow: var(--glow-sm);
}

.btn-primary:hover {
    background: var(--color-ember-dark);
    color: var(--color-text);
    box-shadow: var(--glow-md);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(250, 247, 242, 0.4);
}

.btn-outline:hover {
    border-color: var(--color-ember);
    color: var(--color-ember);
    box-shadow: var(--glow-sm);
}

.btn-ghost {
    background: transparent;
    color: var(--color-ember);
    padding: 0;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.btn-ghost::after {
    content: ' →';
    display: inline-block;
    transition: transform var(--transition);
}

.btn-ghost:hover {
    color: var(--color-text);
}

.btn-ghost:hover::after {
    transform: translateX(6px);
}

.btn-delivery {
    background: var(--color-bg-card);
    color: var(--color-text-muted);
    border: 1px solid transparent;
}

.btn-delivery:hover {
    border-color: var(--color-ember);
    color: var(--color-ember);
    box-shadow: var(--glow-sm);
}

/* ========================================
   Navigation
   ======================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0) 100%);
    transition: background var(--transition), padding var(--transition);
}

.main-nav.scrolled {
    background: rgba(26, 26, 26, 0.98);
    padding: 12px 0;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text);
    text-shadow: var(--glow-sm);
}

.nav-logo:hover {
    color: var(--color-ember);
}

.nav-links {
    display: flex;
    gap: clamp(24px, 4vw, 48px);
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-ember);
    transition: width var(--transition);
}

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

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

.nav-links a.active {
    color: var(--color-ember);
}

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

.nav-centered .nav-container {
    justify-content: center;
}

.nav-centered .nav-links {
    gap: clamp(32px, 6vw, 64px);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 0.1s linear;
    filter: blur(3px);
}

.hero-ember {
    filter: none;
    transform: none;
    background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(232, 93, 4, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 30% 90%, rgba(196, 77, 3, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse 50% 35% at 70% 85%, rgba(255, 140, 50, 0.25) 0%, transparent 35%),
        radial-gradient(ellipse 100% 60% at 50% 120%, rgba(232, 93, 4, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(200, 60, 20, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 75%, rgba(255, 120, 40, 0.15) 0%, transparent 25%),
        linear-gradient(to top, rgba(45, 20, 10, 1) 0%, rgba(26, 26, 26, 1) 40%, rgba(20, 20, 22, 1) 100%);
    animation: emberGlow 8s ease-in-out infinite;
}

.hero-ember::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 80% at 50% 110%, rgba(232, 93, 4, 0.15) 0%, transparent 60%);
    animation: emberPulse 4s ease-in-out infinite;
}

.hero-ember::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 85%, rgba(255, 100, 30, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 75% 80%, rgba(255, 120, 40, 0.08) 0%, transparent 15%),
        radial-gradient(circle at 50% 90%, rgba(232, 93, 4, 0.12) 0%, transparent 25%);
    animation: emberFlicker 3s ease-in-out infinite alternate;
}

@keyframes emberGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

@keyframes emberPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes emberFlicker {
    0% { opacity: 0.7; }
    25% { opacity: 1; }
    50% { opacity: 0.8; }
    75% { opacity: 0.95; }
    100% { opacity: 0.75; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.75) 0%,
        rgba(26, 26, 26, 0.8) 50%,
        rgba(26, 26, 26, 0.9) 100%
    );
}

/* Film grain texture overlay */
.hero::after,
.full-bleed-photo::after,
.page-header::after {
    content: '';
    position: absolute;
    inset: -100%;
    width: 300%;
    height: 300%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
    animation: grain 0.5s steps(10) infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 24px;
}

.hero-logo {
    max-width: 480px;
    width: 85%;
    margin: 0 auto 2rem;
    border-radius: 50%;
    filter: drop-shadow(0 0 30px var(--color-ember-glow));
    animation: fadeIn 1s ease forwards, glow 4s ease-in-out infinite 1s;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll span {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-ember), transparent);
}

/* ========================================
   Info Bar
   ======================================== */
.info-bar {
    background: var(--color-bg-elevated);
    padding: 32px 0;
    border-bottom: 1px solid rgba(250, 247, 242, 0.05);
}

.info-bar-content {
    display: flex;
    justify-content: center;
    gap: clamp(32px, 8vw, 100px);
    flex-wrap: wrap;
}

.info-item {
    text-align: center;
}

.info-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-ember);
    margin-bottom: 6px;
}

.info-value {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

a.info-value:hover {
    color: var(--color-text);
}

/* ========================================
   Famous For Section
   ======================================== */
.famous-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--color-bg);
}

.famous-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: center;
}

.famous-text h2 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
}

.famous-text p {
    margin-bottom: 1rem;
}

.famous-text .btn-ghost {
    margin-top: 1.5rem;
}

.famous-image {
    position: relative;
    max-width: 480px;
}

.famous-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: contrast(1.05) saturate(1.1);
}

.famous-image::before {
    content: '';
    position: absolute;
    inset: 20px -20px -20px 20px;
    border: 1px solid var(--color-ember);
    opacity: 0.3;
    z-index: -1;
}

.famous-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(26, 26, 26, 0.4) 100%
    );
    pointer-events: none;
}

/* ========================================
   Full Bleed Photo Sections
   ======================================== */
.full-bleed-photo {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.full-bleed-bg {
    position: absolute;
    inset: -10px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(4px);
    transform: scale(1.05);
}

.full-bleed-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 26, 10, 0.8) 0%,
        rgba(26, 26, 26, 0.85) 100%
    );
}

.full-bleed-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 60px 24px;
}

.full-bleed-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.full-bleed-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-text-muted);
}

/* ========================================
   Favorites Section
   ======================================== */
.favorites {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--color-bg);
}

.favorites-header {
    text-align: center;
    margin-bottom: clamp(48px, 8vw, 80px);
}

.favorites-header h2 {
    margin-top: 0.5rem;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.favorite-card {
    background: var(--color-bg-card);
    padding: clamp(28px, 4vw, 40px);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.favorite-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-ember), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.favorite-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow-sm);
}

.favorite-card:hover::before {
    opacity: 1;
}

.favorite-card h3 {
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.favorite-card p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.favorite-card .price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-ember);
}

.section-cta {
    text-align: center;
    margin-top: clamp(48px, 6vw, 72px);
}

/* ========================================
   Reviews Section
   ======================================== */
.reviews-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--color-bg-elevated);
}

.reviews-header {
    text-align: center;
    margin-bottom: clamp(48px, 8vw, 80px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.review-card {
    background: var(--color-bg-card);
    padding: clamp(28px, 4vw, 40px);
    position: relative;
}

.review-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--color-ember);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.review-card p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    position: relative;
}

.review-card cite {
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-ember);
}

.ratings {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: clamp(48px, 6vw, 72px);
}

.rating {
    text-align: center;
}

.rating-score {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--color-text);
    line-height: 1;
    text-shadow: var(--glow-sm);
}

.rating-source {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-subtle);
    margin-top: 8px;
    display: block;
}

/* ========================================
   Order Section
   ======================================== */
.order-section {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--color-bg);
}

.order-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.order-content h2 {
    margin-bottom: 1rem;
}

.order-content > p {
    margin-bottom: 2rem;
}

.order-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.order-phone {
    font-size: 0.95rem;
    color: var(--color-text-subtle);
}

.order-phone a {
    color: var(--color-ember);
    font-weight: 500;
}

.order-phone a:hover {
    color: var(--color-text);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-bg-elevated);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(250, 247, 242, 0.05);
}

.footer-main {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(250, 247, 242, 0.05);
}

.footer-logo {
    max-width: 140px;
    opacity: 0.9;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-ember);
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-note {
    font-size: 0.8rem !important;
    color: var(--color-text-subtle) !important;
    margin-top: 0.5rem;
}

.footer-phone {
    font-family: var(--font-display);
    font-size: 1.25rem;
    display: block;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    font-size: 0.8rem;
    color: var(--color-text-subtle);
}

.footer-social a:hover {
    color: var(--color-text);
}

.footer-bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.footer-nav a:hover {
    color: var(--color-ember);
}

.copyright {
    font-size: 0.8rem;
    color: var(--color-text-subtle);
}

/* AiEmpoweredU Button */
.ai-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px 6px 6px;
    background: radial-gradient(ellipse at center, #1a2a4a 0%, #0d1524 100%);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition);
}

.ai-button:hover {
    background: radial-gradient(ellipse at center, #243654 0%, #141e30 100%);
    transform: translateY(-1px);
}

.ai-button img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
}

.ai-button span {
    color: #ffffff;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ========================================
   Page Header (Inner Pages)
   ======================================== */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: -10px;
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    transform: scale(1.05);
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 26, 10, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    padding: 120px 24px 80px;
}

.page-header h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* ========================================
   Menu Page Styles
   ======================================== */
.menu-section {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--color-bg);
}

.menu-category {
    margin-bottom: clamp(48px, 8vw, 72px);
}

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

.menu-category-header {
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}

.menu-category-header h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 6px;
}

.menu-category-note {
    font-size: 0.85rem;
    color: var(--color-text-subtle);
    font-style: italic;
}

.menu-items {
    display: flex;
    flex-direction: column;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(250, 247, 242, 0.05);
    transition: background var(--transition);
}

.menu-item:hover {
    background: rgba(250, 247, 242, 0.02);
    margin: 0 -16px;
    padding: 18px 16px;
}

.menu-item-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 4px;
}

.menu-item-info p {
    font-size: 0.85rem;
    color: var(--color-text-subtle);
}

.menu-item-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-ember);
    white-space: nowrap;
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-section {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 100px);
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h3 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-ember);
    margin-bottom: 1rem;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.contact-block .address {
    color: var(--color-text);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--color-text-subtle);
    margin-top: 8px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(250, 247, 242, 0.05);
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.hours-table td:last-child {
    text-align: right;
    color: var(--color-text);
}

.hours-table tr.closed td {
    color: var(--color-ember);
}

.phone-link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    transition: color var(--transition), text-shadow var(--transition);
}

.phone-link:hover {
    color: var(--color-ember);
    text-shadow: var(--glow-sm);
}

.delivery-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.delivery-btn {
    display: block;
    padding: 14px 20px;
    background: var(--color-bg-card);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    border: 1px solid transparent;
    transition: all var(--transition);
}

.delivery-btn:hover {
    border-color: var(--color-ember);
    color: var(--color-ember);
    box-shadow: var(--glow-sm);
}

.map-container {
    margin-top: 60px;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--color-ember) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    filter: grayscale(1) contrast(1.1);
    opacity: 0.8;
    transition: filter var(--transition), opacity var(--transition);
}

.map-container:hover iframe {
    filter: grayscale(0.5) contrast(1);
    opacity: 1;
}

/* ========================================
   Mobile Responsive
   ======================================== */
@media (max-width: 1024px) {
    .famous-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .famous-image {
        order: -1;
        max-width: 100%;
    }

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

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

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

    .full-bleed-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }

    .nav-logo {
        font-size: 1.25rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

    .info-bar-content {
        flex-direction: column;
        gap: 20px;
    }

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

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

    .ratings {
        flex-direction: column;
        gap: 32px;
    }

    .order-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .footer-nav {
        justify-content: center;
    }

    .full-bleed-photo {
        min-height: 60vh;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 240px;
    }

    .famous-image::before {
        display: none;
    }

    .rating-score {
        font-size: 2.5rem;
    }
}
