/* ==========================================================================
   BURDO RESTAURANTE - CORE STYLES
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Colors */
    --bg-main: #111111; /* Carbon Black */
    --bg-card: #1c1c1c; 
    --bg-glass: rgba(17, 17, 17, 0.85);
    
    --text-main: #F8F6F0; /* Off-white */
    --text-muted: #a0a0a0;
    
    --accent-red: #800020; /* Burgundy Red */
    --accent-red-hover: #5e0017;
    --accent-gold: #E1AD01; /* Warm Mustard */
    --accent-gold-hover: #b88d00;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --container-padding: 2rem;
    --section-padding: 6rem 0;
    
    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --trans-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

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

ul {
    list-style: none;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.center { text-align: center; }
.highlight-red { color: var(--accent-red); }
.highlight-gold { color: var(--accent-gold); }

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle, .section-desc {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--trans-normal);
    border: 2px solid transparent;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.btn-primary {
    background-color: var(--accent-red);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--bg-main);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.link-arrow {
    display: inline-block;
    color: var(--accent-gold);
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 1rem;
    position: relative;
}

.link-arrow span {
    display: inline-block;
    transition: transform var(--trans-fast);
}

.link-arrow:hover span {
    transform: translateX(5px);
}

.link-arrow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width var(--trans-normal);
}

.link-arrow:hover::after {
    width: 100%;
}

/* --- Header & Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--trans-normal);
    background: transparent;
}

.site-header.scrolled {
    padding: 0.8rem 0;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.logo a span {
    color: var(--accent-red);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-gold);
    transition: width var(--trans-normal);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-selector {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--trans-fast);
}

.lang-btn.active, .lang-btn:hover {
    color: #fff;
}

/* Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: all var(--trans-normal);
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 9px; }
.mobile-menu-toggle span:nth-child(3) { top: 18px; }

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Placeholder background */
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), url('path/to/hero.jpg') center/cover;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-main) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #fff;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes scroll {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* --- About Section --- */
.about-section {
    padding: var(--section-padding);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text .section-title {
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 2;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-gold);
    z-index: -1;
    border-radius: 4px;
    pointer-events: none;
}

/* --- Featured Dishes --- */
.featured-section {
    padding: var(--section-padding);
    background-color: var(--bg-card);
}

.featured-section .section-header {
    margin-bottom: 4rem;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.dish-card {
    background: var(--bg-main);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--trans-normal), box-shadow var(--trans-normal);
    border: 1px solid rgba(255,255,255,0.02);
}

.dish-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: rgba(212, 175, 55, 0.1); /* Subtle gold border on hover */
}

.dish-img {
    position: relative;
    overflow: hidden;
}

.dish-img .img-placeholder {
    transition: transform var(--trans-slow);
}

.dish-card:hover .dish-img .img-placeholder {
    transform: scale(1.05);
}

.dish-content {
    padding: 2rem;
}

.dish-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    gap: 15px;
}

.dish-title {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.dish-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    white-space: nowrap;
}

.dish-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Responsive Image Gallery --- */
.gallery-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-main);
}
.gallery-section .section-header {
    margin-bottom: 3rem;
    padding: 0 20px;
}
.masonry-gallery {
    column-count: 1;
    column-gap: 15px;
    padding: 0 15px;
}
@media (min-width: 600px) { .masonry-gallery { column-count: 2; } }
@media (min-width: 900px) { .masonry-gallery { column-count: 3; } }
@media (min-width: 1200px) { .masonry-gallery { column-count: 4; } }

.masonry-brick {
    break-inside: avoid;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform var(--trans-normal);
}
.masonry-brick:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.masonry-brick img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* --- Menu Summary --- */
.menu-section {
    padding: var(--section-padding);
    position: relative;
}

.menu-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-categories {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.menu-category {
    padding: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
    transition: all var(--trans-fast);
}

.menu-category:hover {
    background: rgba(255,255,255,0.03);
    padding-left: 2.5rem;
}

.menu-category.highlight-cat {
    border-left: 3px solid var(--accent-gold);
}

.category-name {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.category-desc {
    color: var(--text-muted);
}

.menu-cta {
    margin-top: 4rem;
}

/* --- Testimonials --- */
.testimonials-section {
    padding: var(--section-padding) 0;
    background-color: var(--bg-card);
    overflow: hidden;
}

.testimonials-section .section-header {
    margin-bottom: 3rem;
}

.testimonials-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    padding: 2rem 0;
}

.autoplay-marquee {
    animation: marquee 35s linear infinite;
}

.autoplay-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 1rem)); }
}

.testimonial-card {
    width: 350px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform var(--trans-fast), box-shadow var(--trans-fast), border-color var(--trans-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.2rem;
}

.reviewer-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 0.3rem 0;
    font-family: var(--font-heading);
}

.rating {
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* --- CTA Section --- */
.cta-section {
    padding: 8rem 0;
    position: relative;
    /* Placeholder background */
    background: linear-gradient(rgba(139, 0, 0, 0.9), rgba(10, 10, 10, 0.95)), url('path/to/cta-bg.jpg') center/cover fixed;
}

.cta-section .section-title {
    color: #fff;
}

/* --- Footer --- */
.site-footer {
    background-color: #050505;
    padding: 5rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent-red);
}

.footer-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #fff;
    transition: all var(--trans-fast);
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

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

.footer-bottom {
    background-color: #000;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.legal-links a:hover {
    color: #fff;
}

/* --- Generic Page Template (page.php) --- */
.page-wrapper {
    padding-top: 80px; /* Offset for sticky header */
    min-height: calc(100vh - 300px);
}

.page-header {
    background: var(--bg-card);
    padding: 6rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
}

.page-content {
    padding: 5rem 0;
    max-width: 800px;
}

.content-area h2 {
    color: var(--accent-gold);
    margin: 2.5rem 0 1rem;
    font-size: 1.8rem;
}

.content-area p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* --- Menu Page (carta.html) --- */
.menu-wrapper {
    padding-top: 80px;
    background-color: var(--bg-main);
    color: var(--text-main);
    padding-bottom: 100px; /* Space for sticky cta */
}
.menu-header {
    padding: 6rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 2rem;
}
.menu-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.legend-item .icon {
    margin-right: 5px;
}
.sticky-nav {
    position: sticky;
    top: 70px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}
.sticky-nav::-webkit-scrollbar {
    display: none;
}
.cat-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0 1rem;
}
.cat-list a {
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.cat-list a:hover {
    color: var(--accent-gold);
}
.menu-block {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    scroll-margin-top: 130px; /* offset for headers */
}
.menu-cat-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.cat-intro {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-style: italic;
}
.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}
.menu-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.02);
    transition: transform var(--trans-fast), border-color var(--trans-fast);
}
.menu-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
}

/* --- Dynamic Menu Styles (menu_es.html injection) --- */
.dynamic-menu-container .menu-category {
    margin-bottom: 4rem;
}

.dynamic-menu-container .menu-category h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 0.5rem;
    margin-bottom: 2.5rem;
    display: inline-block;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
}

.menu-item h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    transition: color var(--trans-fast);
}

.menu-item:hover h3 {
    color: var(--accent-gold);
}

.menu-item .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    white-space: nowrap;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Menu Download Section --- */
.menu-download-section {
    padding: 3rem 0;
    margin-top: 2rem;
    border-top: 1px dashed rgba(255,255,255,0.15);
}

.download-container {
    background: linear-gradient(135deg, rgba(139,0,32,0.1), rgba(225,173,1,0.05));
    border: 1px solid rgba(225,173,1,0.2);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.download-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(225,173,1,0.05), transparent 50%);
    pointer-events: none;
}

.download-text {
    flex: 1;
    min-width: 300px;
}

.download-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.download-text p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(17,17,17,0.5);
    backdrop-filter: blur(5px);
}

.download-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-main);
}

.download-btn .icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .download-container {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .download-text p {
        margin: 0 auto;
    }
    
    .download-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

.star-item {
    border-left: 3px solid var(--accent-gold);
    background: linear-gradient(90deg, rgba(225, 173, 1, 0.05), transparent);
}
.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    gap: 1rem;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
}
.item-title {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.item-price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-gold);
    white-space: nowrap;
}
.item-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17,17,17,0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--trans-normal);
}
.sticky-cta-bar.visible {
    transform: translateY(0);
}
.sticky-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sticky-cta-text {
    font-weight: 600;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* --- Animations & Utilities --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--trans-normal);
}

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

.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp var(--trans-slow) forwards;
}

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .about-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .cta-header {
        display: none;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-main);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right var(--trans-normal);
        z-index: 1000;
    }
    
    .main-nav.open {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text .section-subtitle {
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .testimonial-card {
        min-width: 300px;
        padding: 2rem;
    }
    
    .cat-list {
        justify-content: flex-start;
    }
    
    .sticky-cta-inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .menu-cat-title {
        font-size: 2rem;
    }
}
