/* ============================================
   STAR INDIAN RESTAURANT — STYLESHEET
   Color Palette: Terracotta + Sand
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --terracotta: #C0573E;
    --terracotta-dark: #9E422E;
    --terracotta-light: #D4755C;
    --sand: #F5E6D3;
    --sand-light: #FBF5ED;
    --sand-dark: #E8D5BF;
    --cream: #FFFDF8;
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --text: #2C2420;
    --text-light: #6B5B50;
    --text-muted: #9A8A7E;
    --white: #FFFFFF;
    --spice: #E8601C;
    --saffron: #D4A017;
    --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 26, 26, 0.10);
    --shadow-lg: 0 20px 60px rgba(26, 26, 26, 0.14);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
    color: var(--charcoal);
}

.text-accent {
    color: var(--terracotta);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 60px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
    box-shadow: 0 4px 20px rgba(192, 87, 62, 0.35);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 87, 62, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--terracotta);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-outline-dark:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.05rem;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 253, 248, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--charcoal);
}

.logo-icon {
    font-size: 1.5rem;
    line-height: 1;
}

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

.nav-links a {
    padding: 10px 20px;
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

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

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.navbar.scrolled .nav-links a:hover {
    background: var(--sand);
    color: var(--terracotta);
}

.btn-nav {
    background: var(--terracotta) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
}

.btn-nav:hover {
    background: var(--terracotta-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition);
}

.navbar.scrolled .mobile-toggle span {
    background: var(--charcoal);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.82) 0%,
        rgba(26, 26, 26, 0.55) 50%,
        rgba(192, 87, 62, 0.3) 100%
    );
}

.hero-geometric {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--terracotta);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.geo-circle--2 {
    width: 300px;
    height: 300px;
    background: var(--saffron);
    bottom: 10%;
    right: 15%;
    animation: float 6s ease-in-out infinite reverse;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 200px solid var(--terracotta);
    opacity: 0.08;
    top: 20%;
    left: 5%;
    transform: rotate(15deg);
    animation: spin 20s linear infinite;
}

.geo-dots {
    position: absolute;
    bottom: 15%;
    left: 8%;
    display: grid;
    grid-template-columns: repeat(5, 12px);
    gap: 16px;
    opacity: 0.2;
}

.geo-dots::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--sand);
    border-radius: 50%;
    box-shadow:
        20px 0 0 var(--sand),
        40px 0 0 var(--sand),
        0 20px 0 var(--sand),
        20px 20px 0 var(--sand),
        40px 20px 0 var(--sand),
        0 40px 0 var(--sand),
        20px 40px 0 var(--sand),
        40px 40px 0 var(--sand);
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.03); }
}

@keyframes spin {
    from { transform: rotate(15deg); }
    to { transform: rotate(375deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    color: var(--sand);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--terracotta-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 28px;
    font-weight: 700;
    line-height: 1.08;
}

.hero-title em {
    font-style: italic;
    color: var(--terracotta-light);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    margin-bottom: 44px;
    max-width: 580px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    font-weight: 700;
}

.stat span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: bob 2s ease-in-out infinite;
}

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

/* --- Section Shared --- */
.section-header {
    margin-bottom: 64px;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--terracotta);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--terracotta);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.75;
}

.text-center .section-desc {
    margin: 0 auto;
}

/* --- Menu Section --- */
.menu {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--saffron), var(--terracotta-light), var(--sand-dark));
}

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.cat-btn {
    padding: 12px 26px;
    border: 2px solid var(--sand-dark);
    background: transparent;
    border-radius: 60px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.cat-btn:hover,
.cat-btn.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 64px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
}

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

.menu-card.hidden {
    display: none;
}

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

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

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

.card-spice {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 14px;
    border-radius: 60px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
}

.card-spice.mild {
    background: rgba(139, 195, 74, 0.85);
    color: var(--white);
}

.card-spice.medium {
    background: rgba(232, 96, 28, 0.85);
    color: var(--white);
}

.card-spice.hot {
    background: rgba(192, 87, 62, 0.85);
    color: var(--white);
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

.menu-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 40px 48px;
    background: var(--sand);
    border-radius: var(--radius-lg);
}

.menu-cta p {
    font-size: 1.1rem;
    color: var(--text);
}

.menu-cta p strong {
    color: var(--terracotta);
}

/* --- About Section --- */
.about {
    padding: 120px 0;
    background: var(--sand-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--terracotta);
    opacity: 0.04;
    border-radius: 50%;
    top: -200px;
    right: -150px;
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--sand-light);
}

.about-img-accent img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.about-shape {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: var(--terracotta);
    border-radius: var(--radius-sm);
    transform: rotate(15deg);
    z-index: -1;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 28px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--terracotta);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.feature span {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- Specials Section --- */
.specials {
    padding: 120px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.specials-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(192, 87, 62, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(212, 160, 23, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.specials .section-tag {
    color: var(--terracotta-light);
}

.specials .section-tag::before {
    background: var(--terracotta-light);
}

.specials .section-title {
    color: var(--white);
}

.specials .section-desc {
    color: rgba(255, 255, 255, 0.55);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.special-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    transition: var(--transition);
}

.special-card:hover {
    transform: translateY(-8px);
}

.special-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.special-card:hover .special-card-bg {
    transform: scale(1.08);
}

.special-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0.4) 60%, transparent 100%);
}

.special-card:nth-child(1) .special-card-bg {
    background-image: url('https://images.pexels.com/photos/12317983/pexels-photo-12317983.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=600&h=500');
}

.special-card:nth-child(2) .special-card-bg {
    background-image: url('https://images.pexels.com/photos/1307658/pexels-photo-1307658.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=600&h=500');
}

.special-card:nth-child(3) .special-card-bg {
    background-image: url('https://images.pexels.com/photos/16020706/pexels-photo-16020706.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=600&h=500');
}

.special-card-content {
    position: relative;
    z-index: 1;
    padding: 36px;
    width: 100%;
}

.special-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--terracotta);
    border-radius: 60px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 16px;
}

.special-card-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.special-card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.special-meta {
    display: flex;
    gap: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Visit Section --- */
.visit {
    padding: 120px 0;
    background: var(--cream);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.visit-info .section-title {
    margin-bottom: 48px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 44px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    transition: var(--transition);
}

.info-block:hover .info-icon {
    background: var(--terracotta);
    color: var(--white);
}

.info-block strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.info-block p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.info-block a {
    color: var(--terracotta);
}

.info-block a:hover {
    color: var(--terracotta-dark);
    text-decoration: underline;
}

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 480px;
}

/* --- Footer --- */
.footer {
    background: var(--charcoal);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    max-width: 300px;
}

.footer-links strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid {
        gap: 60px;
    }

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

    .specials-grid .special-card:last-child {
        grid-column: span 2;
        min-height: 280px;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-img-accent {
        right: 20px;
        bottom: -20px;
        width: 200px;
    }

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

    .visit-map {
        min-height: 350px;
    }

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

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 8px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 1.1rem;
        padding: 14px 0;
        width: 100%;
        border-radius: 0;
    }

    .nav-links a:hover {
        background: transparent !important;
        color: var(--terracotta-light) !important;
        padding-left: 12px;
    }

    .btn-nav {
        margin-top: 16px;
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .mobile-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

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

    .hero-actions .btn {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat strong {
        font-size: 1.3rem;
    }

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

    .menu-cta {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

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

    .specials-grid .special-card:last-child {
        grid-column: span 1;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }

    .about-img-main img {
        height: 350px;
    }

    .about-img-accent {
        width: 160px;
        right: 10px;
        bottom: -10px;
    }

    .btn-lg {
        padding: 16px 28px;
        font-size: 0.95rem;
    }
}
