@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties & Theme --- */
:root {
    --bg-dark: #0c0c0e;
    --bg-card: #141417;
    --bg-card-hover: #1c1c20;
    --primary: #800020;         /* Burgundy / Maroon */
    --primary-light: #a31d3b;   /* Vibrant Red-Maroon */
    --primary-dark: #5c0014;
    --gold: #D4AF37;            /* Burnished Gold Accent */
    --gold-light: #f3d46f;      /* Lighter Gold for highlights */
    --gold-dark: #b08d24;
    --text-light: #f5f5f7;      /* Clean White-Gray */
    --text-muted: #ababaf;      /* Muted Gray */
    --text-dark: #121212;
    --border-gold: rgba(212, 175, 55, 0.25);
    --border-gold-strong: rgba(212, 175, 55, 0.6);
    --border-light: rgba(255, 255, 255, 0.08);
    --font-heading: 'Marcellus', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(20, 20, 23, 0.8);
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: normal;
    letter-spacing: 1px;
}

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

/* --- Layout Wrappers --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

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

/* --- Dynamic Scroll Animations (JS triggers .visible) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- Buttons & Interactive Elements --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 29, 59, 0.6);
}

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

.btn-gold:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 85, 0.4);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* --- Headings & Dividers (Nepali Motifs) --- */
.heading-container {
    margin-bottom: 3.5rem;
    text-align: center;
}

.heading-sub {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 0.5rem;
}

.heading-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* Authentic Gold Mandala / Geometric Divider Pattern */
.heading-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.heading-divider::before,
.heading-divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(to var(--gold), transparent);
}

.heading-divider::before {
    background: linear-gradient(to right, transparent, var(--gold));
}

.heading-divider .pattern-icon {
    color: var(--gold);
    font-size: 1.2rem;
    transform: rotate(45deg);
}

/* --- Header / Sticky Navbar --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
    transition: var(--transition);
}

.site-header.scrolled .navbar {
    padding: 0.5rem 0;
}

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

@media (min-width: 1025px) {
    .navbar {
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .logo-link {
        margin-left: 3rem;
    }
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.site-header.scrolled .logo-img {
    height: 90px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

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

.nav-cta {
    display: flex;
    align-items: center;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1001;
}

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

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('/static/img/hero-bg.jpg') no-repeat center center / cover;
    padding-top: 100px;
}

/* Fallback color if hero-bg.jpg does not exist */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(20, 20, 23, 0.7) 30%, rgba(12, 12, 14, 0.95) 90%), 
                linear-gradient(135deg, rgba(128, 0, 32, 0.15) 0%, rgba(12, 12, 14, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    background-color: rgba(20, 20, 23, 0.6);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    display: inline-block;
}

.hero-logo {
    max-height: 120px;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.hero-title span {
    color: var(--gold);
    display: block;
    font-size: 4rem;
    margin-top: 0.5rem;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
}

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

/* --- Info Banner / Callouts --- */
.info-banner {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    position: relative;
    z-index: 5;
    box-shadow: var(--box-shadow);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    padding: 2.5rem 0;
}

.info-item {
    border-right: 1px solid var(--border-light);
    padding: 0 1.5rem;
}

.info-item:last-child {
    border-right: none;
}

.info-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.info-item h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.info-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Features Section --- */
.features-section {
    background-color: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--primary));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-gold);
    background-color: var(--bg-card-hover);
    box-shadow: var(--box-shadow);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(128, 0, 32, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    font-size: 2.2rem;
    color: var(--gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--primary);
    color: var(--text-light);
    border-color: var(--primary);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Story Snippet (Home) --- */
.story-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(20, 20, 23, 0.6) 100%);
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.story-highlights {
    list-style: none;
    margin-bottom: 2.5rem;
}

.story-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.story-highlights i {
    color: var(--gold);
}

.story-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: url('/static/img/interior-1.jpg') no-repeat center center / cover;
    background-color: var(--bg-card); /* Fallback */
    border: 1px solid var(--border-gold);
    box-shadow: var(--box-shadow);
}

.story-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--text-light);
}

.story-visual-overlay h4 {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-visual-overlay p {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* --- Menu Page Styling --- */
.menu-header-section {
    background: linear-gradient(rgba(12, 12, 14, 0.8), rgba(12, 12, 14, 0.95)), 
                url('/static/img/dish-3.jpg') no-repeat center center / cover;
    padding: 10rem 0 5rem 0;
    text-align: center;
}

.menu-sticky-banner {
    position: sticky;
    top: 79px;
    background-color: rgba(128, 0, 32, 0.95);
    border-bottom: 1px solid var(--gold);
    z-index: 99;
    padding: 0.8rem 0;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.menu-sticky-banner p {
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
}

.menu-category-section {
    margin-bottom: 5rem;
}

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

.menu-category-header {
    border-bottom: 1px solid var(--border-gold-strong);
    padding-bottom: 0.8rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.menu-category-title {
    font-size: 1.8rem;
    color: var(--gold);
    text-transform: uppercase;
}

.menu-category-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.2rem;
}

.thali-upgrade-banner {
    background-color: rgba(20, 20, 23, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    transition: var(--transition);
}

.thali-upgrade-banner:hover {
    border-color: var(--border-gold-strong);
    background-color: rgba(20, 20, 23, 0.9);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.05);
}

.thali-upgrade-icon {
    color: var(--gold);
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 0.25rem;
}

.thali-upgrade-content {
    flex: 1;
}

.thali-upgrade-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.thali-upgrade-details {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

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

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 0.4rem;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

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

.menu-item-price {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--gold);
    font-size: 1.15rem;
}

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

.menu-item-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Badges & Icons */
.badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.6rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-vegan {
    background-color: rgba(46, 117, 89, 0.2);
    color: #4cd195;
    border: 1px solid rgba(76, 209, 149, 0.4);
}

.badge-vegetarian {
    background-color: rgba(33, 115, 143, 0.2);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.4);
}

.badge-gluten-free {
    background-color: rgba(212, 175, 55, 0.15);
    color: #f3d46f;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.spice-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.spice-chili {
    color: #f43f5e;
    font-size: 0.8rem;
}

.spice-label {
    font-size: 0.75rem;
    color: #f43f5e;
    text-transform: uppercase;
    font-weight: 500;
    margin-left: 2px;
}

/* --- About Page Styling --- */
.about-header-section {
    background: linear-gradient(rgba(12, 12, 14, 0.8), rgba(12, 12, 14, 0.95)), 
                url('/static/img/interior-2.jpg') no-repeat center center / cover;
    padding: 10rem 0 5rem 0;
    text-align: center;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pillar-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 6px;
    transition: var(--transition);
}

.pillar-card:hover {
    border-color: var(--border-gold);
    background-color: var(--bg-card-hover);
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-row.reverse {
    direction: rtl;
}

.about-row.reverse .about-col-content {
    direction: ltr;
}

.about-col-img {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/2;
    border: 1px solid var(--border-gold);
    box-shadow: var(--box-shadow);
    background-color: var(--bg-card);
}

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

.about-col-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: var(--gold);
}

.about-col-content p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

/* --- Gallery Page Styling --- */
.gallery-header-section {
    background: linear-gradient(rgba(12, 12, 14, 0.8), rgba(12, 12, 14, 0.95)), 
                url('/static/img/dish-1.jpg') no-repeat center center / cover;
    padding: 10rem 0 5rem 0;
    text-align: center;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 1px solid var(--border-light);
    color: var(--text-light);
    padding: 0.6rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-light);
    box-shadow: var(--box-shadow);
    cursor: pointer;
    background-color: var(--bg-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(12, 12, 14, 0.9) 20%, rgba(12, 12, 14, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--gold);
}

.gallery-item-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 12, 14, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-content {
    max-width: 900px;
    max-height: 80%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 2px solid var(--gold);
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-caption {
    text-align: center;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-top: 1rem;
}

/* --- Contact Page Styling --- */
.contact-header-section {
    background: linear-gradient(rgba(12, 12, 14, 0.8), rgba(12, 12, 14, 0.95)), 
                url('/static/img/interior-1.jpg') no-repeat center center / cover;
    padding: 10rem 0 5rem 0;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 2.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-list i {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 4px;
}

.contact-list h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.contact-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-container {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: var(--box-shadow);
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form */
.contact-form-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 3rem;
}

.contact-form-panel h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-form-panel p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    padding: 0.8rem 1rem;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(46, 117, 89, 0.15);
    color: #4cd195;
    border: 1px solid rgba(76, 209, 149, 0.3);
}

/* --- Footer --- */
.site-footer {
    background-color: #08080a;
    border-top: 1px solid var(--border-gold);
    padding: 5rem 0 2rem 0;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.4fr 1.2fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-size: 1.25rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.8rem;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--gold);
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-logo {
    max-height: 70px;
    width: auto;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-hours-list li {
    font-size: 0.9rem;
    white-space: nowrap;
}

.footer-hours-list strong {
    color: var(--text-light);
    font-weight: 500;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-list i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact-list p {
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
}

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

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

/* --- Custom Error Pages --- */
.error-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
}

.error-content h1 {
    font-size: 8rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.error-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .story-grid,
    .about-row,
    .contact-grid {
        gap: 3rem;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--bg-dark);
        border-left: 1px solid var(--border-gold);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .site-header.scrolled .nav-menu {
        background-color: rgba(12, 12, 14, 0.98);
    }
    
    .nav-cta {
        display: none; /* Embedded inside mobile menu in html if needed, or hidden */
    }

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

    .hero-title span {
        font-size: 3rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-bottom: 1.5rem;
    }

    .info-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-visual {
        order: -1;
        aspect-ratio: 16/9;
    }

    .menu-grid-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-row,
    .about-row.reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-row.reverse {
        direction: ltr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-title span {
        font-size: 2.4rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }

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

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

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

/* --- Google Reviews & AI Summary --- */
.reviews-section {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-light);
}

.reviews-header-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    box-shadow: var(--box-shadow);
}

.reviews-header-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.google-brand {
    font-size: 1.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-brand span.g-blue { color: #4285F4; font-family: var(--font-body); font-weight: 700; }
.google-brand span.g-red { color: #EA4335; font-family: var(--font-body); font-weight: 700; }
.google-brand span.g-yellow { color: #FBBC05; font-family: var(--font-body); font-weight: 700; }
.google-brand span.g-green { color: #34A853; font-family: var(--font-body); font-weight: 700; }

.google-rating-score {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-stars {
    color: var(--gold);
    font-size: 1.25rem;
    display: flex;
    gap: 3px;
}

.google-reviews-count {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.reviews-grid {
    column-count: 3;
    column-gap: 2rem;
    width: 100%;
    display: block;
}

.reviews-grid > div {
    display: inline-block;
    width: 100%;
    margin-bottom: 2rem;
    break-inside: avoid;
}

.reviews-cards-col {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* AI Summary Card styling */
.ai-summary-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(139, 92, 246, 0.04) 100%);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: auto;
    box-shadow: var(--box-shadow);
}

.ai-summary-card h3 {
    font-size: 1.3rem;
    color: #c084fc;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-summary-card h3 i {
    color: #c084fc;
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.ai-summary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ai-summary-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.5;
    color: #e2e8f0;
}

.ai-summary-list li i {
    color: #a78bfa;
    margin-top: 4px;
    font-size: 0.95rem;
}

/* Review Card styling */
.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    height: 100%;
}

.review-card:hover {
    border-color: var(--border-gold);
    background-color: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.review-stars {
    color: var(--gold);
    font-size: 0.95rem;
    display: flex;
    gap: 2px;
}

.review-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-light);
    padding-top: 1.2rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-gold);
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.posted-google {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.posted-google i {
    color: #4285F4;
    font-size: 0.85rem;
}

/* Responsive adjustments for reviews */
@media (max-width: 1024px) {
    .reviews-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        column-count: 1;
    }
}

@media (max-width: 768px) {
    .reviews-cards-col {
        grid-template-columns: 1fr;
    }
    
    .reviews-header-container {
        padding: 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .reviews-header-info {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .reviews-header-container .btn {
        width: 100%;
    }
}

.review-card-hidden {
    display: none !important;
}

/* Mobile-only CTA Navigation Menu Container */
.mobile-cta-container {
    display: none;
}

@media (max-width: 768px) {
    .mobile-cta-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 85%;
        margin-top: 1rem;
    }
    .mobile-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
    }
}

/* Smaller phone order button */
.btn-phone-order {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
}
