/* ==========================================
   CSS VARIABLES & RESET
   ========================================== */
:root {
    --color-primary: #D31E26;
    --color-primary-dark: #a81820;
    --color-primary-light: #e8434a;
    --color-dark: #1a1a1a;
    --color-dark-warm: #2c1810;
    --color-cream: #f5f0e8;
    --color-cream-light: #faf8f4;
    --color-text: #3a3a3a;
    --color-text-light: #6b6b6b;
    --color-white: #ffffff;
    --color-accent: #e8a838;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.18);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-bg-light: rgba(255, 255, 255, 0.65);
    --glass-border-light: rgba(255, 255, 255, 0.5);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-cream-light);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   PARTICLE CANVAS — BOOSTED VISIBILITY
   ========================================== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

/* ==========================================
   GLASSMORPHISM UTILITIES
   ========================================== */
.glass-card {
    background: var(--glass-bg-light) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border-light) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.75) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 60px 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-btn {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-overlay {
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================
   MODERN NAVBAR — CLEAN, FLOATING, NO BG
   ========================================== */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
    border-radius: 60px;
    background: transparent;
}

body.has-status-strip .navbar {
    top: calc(16px + 40px);
}

body.has-status-strip .navbar.scrolled {
    top: 40px;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    top: 12px;
}

.navbar.scrolled .nav-links a:not(.nav-btn) {
    color: var(--color-dark);
}

.navbar.scrolled .nav-links a:not(.nav-btn):hover {
    background: rgba(0, 0, 0, 0.06);
}

.navbar.scrolled .hamburger span {
    background: var(--color-dark);
}

.nav-container {
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo — transparent PNG, no background wrapper */
.nav-logo img {
    height: 48px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.navbar.scrolled .nav-logo img {
    height: 36px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-links a:not(.nav-btn):hover {
    background: rgba(255, 255, 255, 0.12);
}

.nav-links a:not(.nav-btn)::after {
    display: none;
}

.nav-btn {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    padding: 10px 22px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.04em;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
}

.nav-btn:hover {
    background: var(--color-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(211, 30, 38, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero-bg.png') center/cover no-repeat;
    overflow: hidden;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(44, 24, 16, 0.65) 50%,
            rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    animation: fadeInUp 1s ease-out;
}

/* Hero logo — transparent PNG, no white box needed */
.hero-logo {
    width: 280px;
    margin: 0 auto 32px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    color: var(--color-white);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-sub {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }

    50% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }
}

@media (max-height: 750px) {
    .hero-scroll {
        display: none;
    }
}

/* Hero Info: Address, Phone, Social Links */
.hero-info {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-address-block,
.hero-contact-block {
    display: flex;
    justify-content: center;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    text-decoration: none;
    font-weight: 500;
}

.hero-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.hero-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Social Icons */
.hero-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    font-size: 0;
}

.social-icon:hover {
    background: rgba(211, 30, 38, 0.8);
    border-color: rgba(211, 30, 38, 0.9);
    transform: translateY(-4px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* Action Buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 28px 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.call-btn {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--color-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: none !important;
}

.call-btn:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Rating Badge */
.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.12);
    /* Glass effect */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.4s both;
    cursor: pointer;
    transition: var(--transition);
}

.hero-rating:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.rating-google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.rating-google-badge svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.rating-stars {
    font-size: 1rem;
    color: #ffc107;
    letter-spacing: 2px;
}

.rating-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.rating-num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
}

.rating-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: rgba(211, 30, 38, 0.9);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(211, 30, 38, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(211, 30, 38, 0.5);
}

.btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    background: var(--color-white);
}

/* ==========================================
   SECTION HEADER
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.4;
}

.section-tag::before {
    left: -20px;
}

.section-tag::after {
    right: -20px;
}

.section-tag-light {
    color: var(--color-accent);
}

.section-tag-light::before,
.section-tag-light::after {
    background: var(--color-accent);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: 120px 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-text.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.about-lead {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-lead em {
    color: var(--color-primary);
    font-style: italic;
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    opacity: 0;
    transform: translateX(30px);
}

.visual-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.visual-card:nth-child(1) {
    transition-delay: 0.1s;
}

.visual-card:nth-child(2) {
    transition-delay: 0.25s;
}

.visual-card:nth-child(3) {
    transition-delay: 0.4s;
}

.visual-card:hover {
    transform: translateY(-4px) !important;
}

.visual-icon {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 240, 232, 0.8);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.visual-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.visual-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery {
    padding: 100px 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:nth-child(1) {
    transition-delay: 0s;
}

.gallery-item:nth-child(2) {
    transition-delay: 0.1s;
}

.gallery-item:nth-child(3) {
    transition-delay: 0.2s;
}

.gallery-item:nth-child(4) {
    transition-delay: 0.3s;
}

.gallery-item:nth-child(5) {
    transition-delay: 0.4s;
}

.gallery-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   ORDER SECTION
   ========================================== */
.order {
    padding: 120px 0;
    background: var(--color-dark-warm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.order::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(211, 30, 38, 0.12), transparent 70%);
    pointer-events: none;
}

.order::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.08), transparent 70%);
    pointer-events: none;
}

.order-wrapper {
    text-align: center;
    position: relative;
    z-index: 1;
}

.order-content {
    max-width: 650px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.order-content.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.order h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.order p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

.order-partner {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.order-partner span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.partner-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
    filter: brightness(1.1);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: 120px 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.contact-card {
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.contact-card.animate-in,
.contact-card.active {
    opacity: 1;
    transform: translateY(0);
}

.contact-card:nth-child(1) {
    transition-delay: 0.1s;
}

.contact-card:nth-child(2) {
    transition-delay: 0.25s;
}

.contact-card:nth-child(3) {
    transition-delay: 0.4s;
}

.contact-card:hover {
    transform: translateY(-6px) !important;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(211, 30, 38, 0.3);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.contact-link {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: var(--transition);
}

a.contact-link:hover {
    color: var(--color-primary);
}

#contact-hours li {
    color: var(--color-text-light);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    line-height: 1.6;
    margin-bottom: 4px;
}

#contact-hours li.today {
    color: var(--color-primary);
    font-weight: 600;
}

#contact-hours li.today .time {
    color: var(--color-primary);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 6px;
}

.map-container.animate-in,
.map-container.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Brand Section */
.footer-brand {
    max-width: 280px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

/* Links Section */
.footer-links h4,
.footer-hours-section h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 4px 0;
}

.footer-nav a:hover {
    color: var(--color-primary);
    padding-left: 6px;
}

/* Hours Section */
.footer-hours-section {
    gap: 12px;
}

.footer-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-hours-list li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    line-height: 1.4;
}

.footer-hours-list li.today {
    color: var(--color-primary);
    font-weight: 600;
}

.footer-hours-list li.today .time {
    color: var(--color-primary);
}

/* Contact Section */
.footer-contact {
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--color-primary);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 36px;
}

.credit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.credit-item span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.credit-logo {
    height: 24px;
    width: auto;
    opacity: 0.6;
    transition: var(--transition);
    filter: brightness(1.2) grayscale(0.3);
}

.credit-logo:hover {
    opacity: 1;
    filter: brightness(1.4) grayscale(0);
    transform: scale(1.05);
}

.sipo-logo {
    height: 28px;
}

.dd-logo {
    height: 22px;
}

/* ==========================================
   FLOATING ORDER BUTTON
   ========================================== */
.floating-order {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(211, 30, 38, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--color-white);
    padding: 14px 26px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 6px 30px rgba(211, 30, 38, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatingPulse 3s ease-in-out infinite;
}

.floating-order.visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-order:hover {
    background: rgba(168, 24, 32, 0.95);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 40px rgba(211, 30, 38, 0.5);
}

@keyframes floatingPulse {

    0%,
    100% {
        box-shadow: 0 6px 30px rgba(211, 30, 38, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    50% {
        box-shadow: 0 6px 40px rgba(211, 30, 38, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top.visible {
    transform: translateY(0);
    opacity: 1;
}

.back-to-top:hover {
    background: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 6px 30px rgba(211, 30, 38, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(211, 30, 38, 0.7);
    transform: rotate(90deg);
}

/* ==========================================
   ANIMATIONS & SMOOTHNESS
   ========================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.2, 0, 0.2, 1), transform 1s cubic-bezier(0.2, 0, 0.2, 1);
}

[data-reveal].active {
    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;
}

/* Hamburger Menu refined */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .hamburger {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--color-white);
    margin: 2px 0;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.navbar.scrolled .hamburger span,
.hamburger.active span {
    background: var(--color-dark);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================
   RESPONSIVE REFINEMENTS
   ========================================== */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .visual-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 240px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .gallery-item-tall {
        grid-row: span 2;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-credits {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: calc(100% - 32px);
        border-radius: 20px;
    }

    body.has-status-strip .navbar {
        top: calc(10px + 40px);
    }

    .navbar.scrolled {
        top: 8px;
    }

    body.has-status-strip .navbar.scrolled {
        top: 40px;
    }

    .nav-container {
        padding: 8px 16px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        padding: 60px 40px;
        transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
        z-index: 2000;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        visibility: hidden;
    }

    .hamburger.active {
        background: rgba(0, 0, 0, 0.05);
        border-color: rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateX(30px);
        transition: 0.5s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.6s;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--color-dark) !important;
        font-family: var(--font-display);
        display: block;
        padding: 10px;
    }

    .nav-btn {
        max-width: 300px;
        margin: 20px auto 0;
        font-family: var(--font-body) !important;
        font-size: 1rem !important;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-logo {
        width: 200px;
    }

    .hero-tagline {
        font-size: 1.8rem;
    }

    .hero-link {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .hero-actions {
        gap: 8px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-rating {
        padding: 10px 16px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about,
    .gallery,
    .order,
    .contact {
        padding: 80px 0;
    }

    .glass-panel {
        padding: 40px 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .order-partner {
        margin-top: 32px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-section {
        align-items: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 8px;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-hours-list {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-credits {
        flex-direction: column;
        gap: 15px;
    }

    .floating-order span {
        display: none;
    }

    .floating-order {
        padding: 15px;
        left: 20px;
        bottom: 20px;
    }

    .back-to-top {
        right: 20px;
        bottom: 20px;
    }

    section {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-logo {
        width: 160px;
    }

    .hero-info {
        gap: 10px;
        margin: 20px 0;
    }

    .hero-link {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        margin: 20px 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .hero-rating {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .about-lead {
        font-size: 1.15rem;
    }

    .visual-card {
        padding: 20px;
    }

    .contact-card {
        padding: 28px 20px;
    }

    .nav-logo img {
        height: 38px;
    }
}

/* ==========================================
   STATUS STRIP & MODALS
   ========================================== */
.status-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2000;
    background-color: var(--color-white);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.status-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.status-strip.open {
    background-color: #f0fdf4;
    color: #166534;
    border-bottom-color: #bbf7d0;
}

.status-strip.closed {
    background-color: #fef2f2;
    color: #991b1b;
    border-bottom-color: #fecaca;
}

.status-strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}

.sipo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sipo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sipo-modal {
    background: var(--color-white);
    padding: 40px 32px;
    border-radius: var(--radius-xl);
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-xl);
}

.sipo-modal-overlay.active .sipo-modal {
    transform: translateY(0);
}

.sipo-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-text-light);
    transition: color 0.2s;
    line-height: 1;
}

.sipo-modal-close:hover {
    color: var(--color-primary);
}

.sipo-modal-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.sipo-modal-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.sipo-modal-text {
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.sipo-modal-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}

.countdown-timer {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}