/* ==========================================
   CSS VARIABLES & RESET
   ========================================== */
:root {
    --color-primary: #7aab5e;
    --color-primary-dark: #5d8c47;
    --color-primary-light: #9cc47e;
    --color-dark: #1a1a1a;
    --color-dark-warm: #1a2b14;
    --color-cream: #f2f7ee;
    --color-cream-light: #f7faf4;
    --color-text: #2e3a28;
    --color-text-light: #5a6b52;
    --color-white: #ffffff;
    --color-accent: #c8e68a;
    /* RGB channel variables — used for rgba() with opacity */
    --color-primary-rgb: 122, 171, 94;
    --color-primary-dark-rgb: 93, 140, 71;
    --color-primary-light-rgb: 156, 196, 126;
    --color-accent-rgb: 200, 230, 138;
    --color-dark-warm-rgb: 26, 43, 20;
    --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;
}

/* ==========================================
   AMBIENT BACKGROUND — PREMIUM FLUID ORBS
   ========================================== */
.bg-ambient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--color-cream-light);
    overflow: hidden;
    pointer-events: none;
}

#ambientCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Lower than any section content */
}

.bg-ambient .orb {
    position: absolute;
    width: 60vh;
    height: 60vh;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    mix-blend-mode: normal; /* Changed from multiply to ensure visibility */
}

.bg-ambient .orb:nth-child(1) {
    background: var(--color-primary);
    top: -10%;
    left: -10%;
}

.bg-ambient .orb:nth-child(2) {
    background: var(--color-accent);
    bottom: -10%;
    right: -10%;
    width: 80vh;
    height: 80vh;
}

.bg-ambient .orb:nth-child(3) {
    background: var(--color-primary-light);
    top: 40%;
    left: 60%;
    width: 50vh;
    height: 50vh;
}

.bg-ambient .grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 2;
}

/* ==========================================
   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);
}

/* ==========================================
   STATUS STRIP (Solid Top Bar Style)
   ========================================== */
/* Consolidating status strip and navbar logic */
.status-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5000; /* Extremely high to stay above everything */
    background: #3d6b2e;
    color: white;
    padding: 12px 0;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center; /* PERFECTLY CENTERED */
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.status-strip.open {
    background: #5fa83c;
}

.status-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 10px white;
    animation: statusPulse 2s infinite ease-in-out;
}

.status-strip-text {
    white-space: nowrap;
    text-align: center;
}

.has-status-strip .navbar {
    top: 44px; /* Fixed offset for the bar */
}

.has-status-strip .navbar.scrolled {
    top: 44px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    height: 100vh;
    height: 100svh; /* Dynamic viewport height for mobile */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

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

.hero-logo {
    max-width: 100px;
    margin: 40px auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    animation: fadeInDown 1.2s ease-out;
}

.hero-tagline {
    font-size: clamp(2rem, 5vw, 4rem);
    font-family: var(--font-display);
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-sub {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 650px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-direction: row; /* Default side-by-side for desktop */
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.hero-secondary-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 5px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.hero-scroll:hover {
    opacity: 1;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, white, transparent);
    margin: 0 auto;
}

/* ==========================================
   MODAL OVERLAY
   ========================================== */
.sipo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sipo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sipo-modal {
    background: #0d1f0a;
    /* Deep Forest Green */
    color: white;
    width: 90%;
    max-width: 480px;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    text-align: center;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sipo-modal-overlay.active .sipo-modal {
    transform: translateY(0);
}

.sipo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.sipo-modal-close:hover {
    opacity: 1;
}

.sipo-modal-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.sipo-modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.sipo-modal-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.8);
}

.sipo-modal-btn {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
}

.countdown-timer {
    font-family: monospace;
    font-weight: 700;
}

/* ==========================================
   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(var(--color-primary-rgb), 0.9);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(var(--color-primary-rgb), 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(var(--color-primary-rgb), 0.45);
    background: var(--color-primary-dark);
}

.btn-light {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-light:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: var(--color-white);
}

.btn-secondary,
.secondary-btn {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: none;
}

.btn-secondary:hover,
.secondary-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--color-primary-rgb), 0.2);
}

/* ==========================================
   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: 5;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    opacity: 1;
    transform: none;
    transition: var(--transition);
}

.about-text.animate-in {
    opacity: 1;
    transform: none;
}

.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: 1;
    transform: none;
}

.visual-card.animate-in {
    opacity: 1;
    transform: none;
}

.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);
}

/* ==========================================
   POPULAR MENU SECTION
   ========================================== */
.menu {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.menu-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.2, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.menu-item.active {
    opacity: 1;
    transform: translateY(0);
}

.menu-item:hover {
    transform: translateY(-8px);
}

.menu-img-wrapper {
    position: relative;
    padding-bottom: 75%;
    /* 4:3 aspect ratio */
    overflow: hidden;
}

.menu-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.menu-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-item.no-image .menu-info {
    padding: 32px 24px;
    min-height: 220px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.text-badge {
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.menu-item-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-dark);
    margin: 0;
}

.menu-price {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.menu-description {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-footer {
    text-align: center;
    margin-top: 40px;
}

.menu-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(var(--color-primary-rgb), 0.1);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================
   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;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.gallery-item.active {
    opacity: 1;
    transform: translateY(0);
}

.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(var(--color-primary-rgb), 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(var(--color-accent-rgb), 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: 1;
    transform: none;
    transition: var(--transition);
}

.order-content.animate-in {
    opacity: 1;
    transform: none;
}

.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: 1;
    transform: none;
}

.contact-card.animate-in,
.contact-card.active {
    opacity: 1;
    transform: none;
}

.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(var(--color-primary-rgb), 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: 1;
    transform: none;
    transition: var(--transition);
    padding: 6px;
}

.map-container.animate-in,
.map-container.active {
    opacity: 1;
    transform: none;
}

/* ==========================================
   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(var(--color-primary-rgb), 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(var(--color-primary-rgb), 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(var(--color-primary-dark-rgb), 0.95);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 40px rgba(var(--color-primary-rgb), 0.5);
}

@keyframes floatingPulse {

    0%,
    100% {
        box-shadow: 0 6px 30px rgba(var(--color-primary-rgb), 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    50% {
        box-shadow: 0 6px 40px rgba(var(--color-primary-rgb), 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(var(--color-primary-rgb), 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(var(--color-primary-rgb), 0.7);
    transform: rotate(90deg);
}

/* ==========================================
   ANIMATIONS & SMOOTHNESS
   ========================================== */
/* Simple Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
    will-change: opacity, transform;
}

.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: 200px; /* Standardize height */
        gap: 12px;
    }

    .gallery-item-tall, .gallery-item-wide {
        grid-row: span 1 !important;
        grid-column: span 1 !important;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-item img {
        height: 100%;
        object-fit: cover;
    }

    .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 + 44px);
    }

    .navbar.scrolled {
        top: 8px;
    }

    body.has-status-strip .navbar.scrolled {
        top: 44px;
    }

    .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.active li:nth-child(7) {
        transition-delay: 0.7s;
    }

    .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;
    }

    .secondary-btn {
        background: transparent !important;
        color: var(--color-primary) !important;
        border: 2px solid var(--color-primary) !important;
        margin-top: 10px !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: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 12px;
    }

    .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
   ========================================== */
/* Removed redundant block */

.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;
}

/* ==========================================
   SPECIALIZED COMPONENTS
   ========================================== */
.is-icon-only {
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    min-width: 0 !important;
}

.is-icon-only svg {
    margin: 0 !important;
    display: block !important;
}

/* Glass effect for icon buttons */
.glass-btn.is-icon-only {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
    backdrop-filter: blur(8px) !important;
    color: white !important;
}

.glass-btn.is-icon-only:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-3px) scale(1.05) !important;
}

/* Remove Scroll Helper */
.hero-scroll {
    display: none !important;
}

/* ==========================================
   NAVBAR & HEADER UNIT
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 42px;
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 36px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

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

.nav-btn {
    background: var(--color-primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(var(--color-primary-rgb), 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.4);
}

/* Status Strip - Solid Top Bar (Luxora Style) */
/* Removed redundant block */

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    height: 100vh;
    height: 100svh;
    min-height: 500px; /* Reduced min-height for small screens */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 24px 0;
    /* Reduced top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    max-width: 90px;
    /* Smaller logo */
    margin-bottom: 30px;
    /* Reduced margin */
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    animation: fadeInDown 1.2s ease-out;
}

.hero-tagline {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    /* Slightly smaller head */
    font-family: var(--font-display);
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 35px;
    /* Reduced margin */
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    /* Tighter gap */
    margin-bottom: 35px;
}

/* ==========================================
   MOBILE HERO REFINEMENTS
   ========================================== */
@media (max-width: 600px) {
    .hero {
        padding-top: 40px;
    }
    
    .hero-content {
        padding: 20px 20px 0;
    }

    .hero-logo {
        max-width: 70px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .hero-tagline {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .hero-info {
        margin-bottom: 25px;
        gap: 10px;
    }
    
    .hero-actions {
        flex-direction: column; /* Stack on mobile */
        gap: 12px;
    }

    .hero-actions .btn:not(.is-icon-only) {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

/* Gallery Mobile Expansion */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .gallery-actions {
        margin-top: 30px;
        text-align: center;
    }

    /* Hide images 5 and onwards by default on mobile */
    .gallery-grid:not(.expanded) .gallery-item:nth-child(n+5) {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-auto-rows: 180px !important;
        gap: 12px !important;
    }
    
    .gallery-item {
        height: 180px !important;
    }
    
    .gallery-item img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    section {
        padding: 60px 0 !important;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .menu-footer {
        margin-top: 20px;
    }

    .menu-grid {
        margin-bottom: 30px;
    }

    .about-content {
        gap: 30px;
    }

    .about {
        padding-top: 40px !important;
    }
}