        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            line-height: 1.6;
            color: #1e293b;
            width: 100%;
            margin: 0;
            padding: 0;
            position: relative;
        }

        /* Prevent horizontal scroll without breaking sticky */
        html {
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 50;
            transition: all 0.5s ease;
            background: transparent;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.5rem 2rem;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            cursor: pointer;
        }

        .nav-logo-symbol {
            width: 65px;
            height: 65px;
            background: rgba(255, 255, 255, 0);
            border-radius: 8px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .nav-logo-symbol:hover {
            transform: scale(1.08);
        }

        .nav-logo-symbol img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .nav-logo-text-wrapper {
            display: flex;
            flex-direction: column;
        }

        .nav-subtitle {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f172a;
            transition: color 0.3s;
            line-height: 1.2;
            letter-spacing: 0.05em;
        }

        nav:not(.scrolled) .nav-subtitle {
            color: white;
        }

        /* Hamburger Menu */
        .hamburger-menu {
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 24px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 10;
        }

        .hamburger-menu span {
            width: 30px;
            height: 3px;
            background: #0f172a;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        nav:not(.scrolled) .hamburger-menu span {
            background: #fbbf24;
        }

        .hamburger-menu:hover span {
            background: #f59e0b;
        }

        /* Fullscreen Menu Overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0b1120 0%, #3a0d14 55%, #0b1120 100%);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease;
        }

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

        .menu-overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.08) 0%, transparent 40%);
            pointer-events: none;
        }

        .menu-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: transparent;
            border: none;
            cursor: pointer;
            color: #fbbf24;
            transition: transform 0.3s ease, color 0.3s ease;
            z-index: 10001;
        }

        .menu-close:hover {
            transform: rotate(90deg);
            color: #f59e0b;
        }

        .menu-content {
            position: relative;
            z-index: 10000;
            width: 100%;
            max-width: 600px;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .menu-nav {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            width: 100%;
        }

        .menu-link {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;
            letter-spacing: 0.05em;
            text-align: center;
        }

        .menu-link::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
            transition: transform 0.3s ease;
        }

        .menu-link:hover {
            color: #fbbf24;
            transform: translateY(-2px);
        }

        .menu-link:hover::after {
            transform: translateX(-50%) scaleX(1);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            width: 100%;
            overflow: hidden;
            background: linear-gradient(135deg, #0b1120 0%, #3a0d14 55%, #0b1120 100%);

            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .hero-blob {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            filter: blur(80px);
            animation: pulse 4s ease-in-out infinite;
        }

        .hero-blob-1 {
            top: 80px;
            right: 40px;
            background: rgba(245, 158, 11, 0.1);
        }

        .hero-blob-2 {
            bottom: 80px;
            left: 40px;
            background: rgba(217, 119, 6, 0.1);
            animation-delay: 1s;
        }

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

        .hero-statue {
            position: absolute;
            left: 0;
            bottom: 0;
            height: 90vh;
            width: auto;
            z-index: 5;
            opacity: 0.4;
            pointer-events: none;
            object-fit: contain;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 1rem 2rem;
            max-height: calc(100vh - 100px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

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

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Logo Symbol Container */
        .hero-logo-symbol {
            margin-bottom: 1rem;
            display: inline-block;
            animation: scaleIn 1s ease-out;
        }

        .logo-symbol-wrapper {
            position: relative;
            width: 140px;
            height: 140px;
            margin: 0 auto;
        }

        .logo-glow {
            position: absolute;
            inset: -20px;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
            filter: blur(30px);
            animation: pulse 3s ease-in-out infinite;
        }

        .logo-symbol-circle {
            position: relative;
            width: 140px;
            height: 140px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 15px;
            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(251, 191, 36, 0.2);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            overflow: hidden;
        }

        .logo-symbol-circle:hover {
            transform: translateY(-8px) scale(1.04);
            box-shadow: 
                0 25px 70px rgba(0, 0, 0, 0.4),
                0 0 0 2px rgba(251, 191, 36, 0.3);
        }

        .logo-symbol-circle::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0.5) 0%,
                transparent 50%,
                rgba(251, 191, 36, 0.1) 100%
            );
            pointer-events: none;
        }

        .logo-symbol-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center 45%;
            filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
        }

        /* Logo Text Styling */
        .hero-logo-text {
            margin: 1.5rem 0 1rem;
            animation: fadeInUp 1s ease-out 0.3s both;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .logo-main-text {
            font-size: 4rem;
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: #ffffff;
            letter-spacing: 0.05em;
            line-height: 1;
            margin-bottom: 0.25rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .logo-main-text::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: linear-gradient(to right, transparent, #fcd34d, transparent);
            box-shadow: 0 0 10px rgba(252, 211, 77, 0.5);
        }

        .logo-hotel-text {
            font-size: 1.75rem;
            font-weight: 300;
            color: #fcd34d;
            letter-spacing: 0.4em;
            margin-left: 0.4em; /* Compensate for letter-spacing offset */
            margin-bottom: 0.25rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 15px rgba(252, 211, 77, 0.3);
        }

        .logo-location-text {
            font-size: 1.5rem;
            font-family: 'Georgia', serif;
            font-weight: 500;
            color: #fbbf24;
            letter-spacing: 0.15em;
            margin-left: 0.15em; /* Compensate for letter-spacing offset */
            margin-bottom: 0.75rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-tagline {
            font-size: 1.25rem;
            color: rgba(251, 191, 36, 0.9);
            font-weight: 300;
            font-style: italic;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out 0.6s both;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-since-badge {
            display: inline-block;
            padding: 0.4rem 1.25rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(251, 191, 36, 0.4);
            border-radius: 50px;
            color: #fcd34d;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-cta {
            margin-top: 1rem;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(to right, #f59e0b, #d97706);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 500;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .hero-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.35);
            background: linear-gradient(to right, #d97706, #b45309);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator svg {
            width: 1.5rem;
            height: 1.5rem;
            color: #fbbf24;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

        /* ===== HERITAGE SECTION - SCROLL TRANSITIONS ===== */
        .heritage {
            padding: 0;
            margin: 0;
            position: relative;
            height: 300vh; /* 3x viewport for 3 stages */
            overflow: visible;
            background: #020617;
            width: 100%;
        }

        .heritage-scroll-container {
            position: -webkit-sticky; /* Safari */
            position: sticky;
            top: 10px;
            height: calc(100vh - 10px);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1a0a0a 0%, #0f172a 50%, #1a0a0a 100%);
            width: 100%;
            z-index: 1;
            padding-top: 0;
        }

        /* Parallax Background Layer */
        .parallax-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            will-change: transform;
        }

        .heritage-bg-layer {
            background: linear-gradient(135deg, rgba(122, 26, 26, 0.2) 0%, rgba(15, 23, 42, 0.7) 100%);
            z-index: 0;
        }

        .gradient-overlay {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 60%);
        }

        /* Progress Indicator */
        .heritage-progress {
            position: absolute;
            right: 3rem;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            z-index: 10;
        }

        .progress-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(251, 191, 36, 0.3);
            border: 2px solid #fbbf24;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .progress-dot.active {
            width: 16px;
            height: 16px;
            background: #fbbf24;
            box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
        }

        /* Scroll Mouse Indicator - positioned at bottom center */
        .heritage-scroll-mouse {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            opacity: 0.8;
            animation: fadeInOut 3s ease-in-out infinite;
        }

        .mouse {
            width: 18px;
            height: 28px;
            border: 1.5px solid #fbbf24;
            border-radius: 9px;
            position: relative;
            background: rgba(15, 23, 42, 0.3);
            backdrop-filter: blur(5px);
        }

        .mouse-wheel {
            width: 3px;
            height: 6px;
            background: #fbbf24;
            border-radius: 1.5px;
            position: absolute;
            top: 6px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 2s ease-in-out infinite;
        }

        @keyframes scrollWheel {
            0% {
                top: 6px;
                opacity: 1;
            }
            50% {
                top: 14px;
                opacity: 0.5;
            }
            100% {
                top: 6px;
                opacity: 1;
            }
        }

        .scroll-arrows {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .scroll-arrows span {
            display: block;
            width: 12px;
            height: 12px;
            border-right: 2px solid #fbbf24;
            border-bottom: 2px solid #fbbf24;
            transform: rotate(45deg);
            animation: arrowBounce 2s ease-in-out infinite;
        }

        .scroll-arrows span:nth-child(2) {
            animation-delay: 0.2s;
            opacity: 0.7;
        }

        @keyframes arrowBounce {
            0%, 100% {
                transform: rotate(45deg) translateY(0);
                opacity: 0.4;
            }
            50% {
                transform: rotate(45deg) translateY(4px);
                opacity: 1;
            }
        }

        @keyframes fadeInOut {
            0%, 100% {
                opacity: 0.5;
            }
            50% {
                opacity: 1;
            }
        }

        /* Hide scroll mouse on mobile */
        @media (max-width: 768px) {
            .heritage-scroll-mouse {
                display: none;
            }
        }

        /* Content Wrapper */
        .heritage-content-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            z-index: 2;
        }

        /* Scroll Progress Bar */
        .heritage-scroll-progress {
            position: fixed;
            top: 60px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-bottom: 1px solid rgba(251, 191, 36, 0.3);
        }

        .heritage-scroll-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 50%, #fbbf24 100%);
            width: 0%;
            transition: width 0.1s linear;
            box-shadow:
                0 0 30px rgba(251, 191, 36, 1),
                0 0 60px rgba(251, 191, 36, 0.6),
                0 0 90px rgba(251, 191, 36, 0.3),
                inset 0 0 20px rgba(255, 255, 255, 0.5);
            position: relative;
        }

        .heritage-scroll-progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 20px;
            height: 100%;
            background: rgba(255, 255, 255, 0.5);
            filter: blur(10px);
            animation: progressGlow 1.5s ease-in-out infinite;
        }

        @keyframes progressGlow {
            0%, 100% {
                opacity: 0.3;
            }
            50% {
                opacity: 1;
            }
        }

        /* Heritage Stages */
        .heritage-stage {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 1.2s ease-in-out;
        }

        .heritage-stage.active {
            opacity: 1;
            pointer-events: auto;
        }

        /* Stage Content Layouts */
        .stage-content-grid {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            max-width: 1400px;
            width: calc(100% - 6rem);
            margin: 0 auto;
            padding: 2rem 3rem;
            gap: 0.5rem;
        }

        .stage-content-grid .stage-title {
            width: 100%;
            text-align: center;
            margin: 0;
            flex-shrink: 0;
        }

        .stage-content-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            width: 100%;
            max-height: calc(100vh - 60px - 12rem);
            overflow: visible;
        }

        .stage-content-centered {
            max-width: 900px;
            width: 100%;
            padding: 2rem 3rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            max-height: calc(100vh - 60px - 4rem);
            overflow-y: auto;
        }

        /* Stage Text */
        .stage-text {
            color: white;
        }

        .stage-text .section-label,
        .stage-text .stage-title,
        .stage-text .stage-description p {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }

        .heritage-stage.active .stage-text .section-label {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.3s;
        }

        .heritage-stage.active .stage-text .stage-title {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .heritage-stage.active .stage-text .stage-description p {
            opacity: 1;
            transform: translateY(0);
        }

        .heritage-stage.active .stage-text .stage-description p:nth-child(1) {
            transition-delay: 0.7s;
        }

        .heritage-stage.active .stage-text .stage-description p:nth-child(2) {
            transition-delay: 0.9s;
        }

        .heritage-stage.active .stage-text .stage-description p:nth-child(3) {
            transition-delay: 1.1s;
        }

        .stage-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            font-family: 'Georgia', serif;
            line-height: 1.2;
            margin: 0;
            background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stage-description p {
            font-size: 1rem;
            line-height: 1.6;
            color: #e2e8f0;
            margin-bottom: 1rem;
        }

        .stage-description strong {
            color: #fbbf24;
            font-weight: 600;
        }

        /* Section Label - Updated styling */
        .section-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: #fbbf24;
            margin-bottom: 0.5rem;
            padding: 0.4rem 1rem;
            background: rgba(251, 191, 36, 0.1);
            border-radius: 2rem;
            border: 1px solid rgba(251, 191, 36, 0.3);
        }

        /* Stage Visual */
        .stage-visual {
            position: relative;
        }

        /* Storefront Images - Crossfade Effect */
        .storefront-parallax-wrapper {
            position: relative;
            width: 100%;
            max-height: 450px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0.95);
            transition: opacity 1s ease, transform 1s ease;
        }

        .heritage-stage.active .storefront-parallax-wrapper {
            opacity: 1;
            transform: scale(1);
            transition-delay: 0.3s;
        }

        .storefront-layer-1,
        .storefront-layer-2 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Old storefront - will fade in and out */
        .storefront-layer-1 {
            z-index: 2;
            opacity: 1;
        }

        /* New storefront - will fade in and out */
        .storefront-layer-2 {
            z-index: 1;
            opacity: 0;
        }

        /* When stage is active, start infinite crossfade animation */
        .heritage-stage.active .storefront-layer-1 {
            animation: fadeInOut 8s ease-in-out infinite;
            animation-delay: 1s;
        }

        .heritage-stage.active .storefront-layer-2 {
            animation: fadeInOut 8s ease-in-out infinite;
            animation-delay: 5s; /* Offset by half the cycle */
        }

        @keyframes fadeInOut {
            0%, 100% {
                opacity: 0;
            }
            25%, 75% {
                opacity: 1;
            }
        }

        .storefront-img {
            width: 100%;
            max-width: 500px;
            max-height: 400px;
            height: auto;
            object-fit: cover;
            border-radius: 1.5rem;
            box-shadow:
                0 25px 70px rgba(0,0,0,0.5),
                0 0 0 1px rgba(251, 191, 36, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
            transition: transform 0.5s ease;
        }

        .storefront-img:hover {
            transform: scale(1.02);
        }

        .storefront-badge {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.95) 0%, rgba(217, 119, 6, 0.95) 100%);
            color: #0f172a;
            padding: 0.5rem 1.5rem;
            border-radius: 2rem;
            font-weight: 700;
            font-size: 0.875rem;
            box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
            z-index: 4;
            letter-spacing: 0.05em;
            backdrop-filter: blur(10px);
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .heritage-stage.active .storefront-badge {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 1.5s;
        }

        /* Founder Visual */
        .founder-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .portrait-card {
            position: relative;
            max-width: 450px;
            width: 100%;
        }

        .founder-img {
            width: 100%;
            max-height: 400px;
            height: auto;
            object-fit: contain;
            border-radius: 1rem;
            box-shadow:
                0 25px 70px rgba(0,0,0,0.5),
                0 0 0 1px rgba(251, 191, 36, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
            border: 4px solid #fbbf24;
            transition: transform 0.5s ease;
        }

        .founder-img:hover {
            transform: scale(1.02);
        }

        .founder-name {
            font-size: 1.75rem;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 0.5rem;
        }

        .founder-subtitle {
            color: #cbd5e1;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .founder-quote {
            background: rgba(251, 191, 36, 0.1);
            border-left: 4px solid #fbbf24;
            padding: 1.25rem;
            font-style: italic;
            color: #fde68a;
            font-size: 1rem;
            margin: 1.5rem 0 0;
            line-height: 1.6;
        }

        /* Poem Section */
        .poem-image-container {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .poem-img {
            width: 100%;
            max-width: 500px;
            max-height: 400px;
            height: auto;
            object-fit: contain;
            border-radius: 1rem;
            box-shadow:
                0 25px 70px rgba(0,0,0,0.5),
                0 0 0 1px rgba(251, 191, 36, 0.1),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
            border: 4px solid #fbbf24;
            transition: transform 0.5s ease;
        }

        .poem-img:hover {
            transform: scale(1.02);
        }

        .poem-attribution strong {
            color: #fbbf24;
        }

        .poem-credit {
            font-style: italic;
            color: #fde68a;
            font-size: 1rem;
        }

        .poem-credit span {
            display: block;
            font-size: 0.85rem;
            color: #cbd5e1;
            font-style: normal;
            margin-top: 0.25rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .stage-content-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 0 2rem;
            }

            .stage-visual {
                order: -1;
            }

            .heritage-progress {
                right: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .heritage {
                height: 240vh; /* preserves scroll room for transitions */
            }

            .stage-content-grid,
            .stage-content-centered {
                padding: 0 1.5rem;
            }

            .year-timeline {
                flex-direction: column;
                gap: 1rem;
            }

            .timeline-line {
                width: 2px;
                height: 40px;
                background: linear-gradient(180deg, #fbbf24 0%, rgba(251, 191, 36, 0.3) 100%);
            }

            .storefront-parallax-wrapper {
                height: 350px;
            }

            .heritage-progress {
                right: 1rem;
                gap: 1rem;
            }

            .progress-dot {
                width: 10px;
                height: 10px;
            }

            .progress-dot.active {
                width: 14px;
                height: 14px;
            }

            .poem-img {
                border: 2px solid #fbbf24;
            }
        }

        @media (max-width: 480px) {
            .stage-content-grid,
            .stage-content-centered {
                padding: 0 1rem;
            }

            .storefront-parallax-wrapper {
                height: 300px;
            }

            .storefront-img {
                border: 2px solid #fbbf24;
            }

            .founder-img {
                border: 4px solid #fbbf24;
            }
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

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

        .section-label {
            color: #e7c413;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 0.4rem;
        }

        .section-title {
            font-size: 2.75rem;
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: #0f172a;
            margin-bottom: 0.75rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            font-weight: 300;
            max-width: 42rem;
            margin: 0 auto;
        }

        .heritage-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
        }

        .heritage-text {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 1s ease;
        }

        .heritage-text.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .heritage-text p {
            font-size: 1rem;
            color: #334155;
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .heritage-text p:last-of-type {
            margin-bottom: 0;
        }

        .heritage-images {
            opacity: 0;
            transform: translateX(30px);
            transition: all 1s ease;
            transition-delay: 0.2s;
        }

        .heritage-images.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .heritage-image-container {
            position: relative;
            max-width: 100%;
        }

        .heritage-glow {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, #f59e0b, #d97706);
            border-radius: 1rem;
            filter: blur(40px);
            opacity: 0.2;
            transition: opacity 0.5s;
        }

        .heritage-image-container:hover .heritage-glow {
            opacity: 0.3;
        }

        .heritage-image-wrapper {
            position: relative;
            width: 100%;
        }

        .heritage-image {
            width: 100%;
            max-height: 60vh;
            height: auto;
            border-radius: 1rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            object-fit: contain;
            display: block;
        }

        .heritage-image-old {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 1rem;
            animation: fadeToNew 6s ease-in-out infinite;
        }

        @keyframes fadeToNew {
            0%, 40% {
                opacity: 1;
            }
            50%, 90% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

        .heritage-year-badge {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            background: rgba(0, 0, 0, 0.7);
            color: #eab308;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 0.9rem;
            backdrop-filter: blur(10px);
        }

        .heritage-year-badge .year {
            display: inline-block;
        }

        .heritage-year-badge .year-old {
            animation: fadeToNew 6s ease-in-out infinite;
        }

        .heritage-year-badge .year-new {
            position: absolute;
            left: 1.25rem;
            animation: fadeToOld 6s ease-in-out infinite;
        }

        @keyframes fadeToOld {
            0%, 40% {
                opacity: 0;
            }
            50%, 90% {
                opacity: 1;
            }
            100% {
                opacity: 0;
            }
        }

        /* Heritage and Poem Grid */
        .heritage-poem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        /* Poem Section Inline */
        .poem-section-inline {
            background: linear-gradient(135deg, #fef7ed 0%, #fdf4e7 50%, #fef3c7 100%);
            border-radius: 1rem;
            padding: 2rem;
            display: flex;
            align-items: center;
        }

        .poem-content-inline {
            width: 100%;
            text-align: center;
        }

        .section-header-poem {
            margin-bottom: 2rem;
        }

        .section-label-poem {
            color: #92400e;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 0.4rem;
        }

        .section-title-poem {
            font-size: 2rem;
            font-weight: 700;
            color: #78350f;
            margin-bottom: 0.5rem;
        }

        .section-subtitle-poem {
            font-size: 1rem;
            color: #92400e;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Poem Tribute Section - Separate Section */
        .poem-section {
            min-height: calc(100vh - 75px);
            padding: 2rem 0;
            background: linear-gradient(135deg, #fef7ed 0%, #fdf4e7 50%, #fef3c7 100%);
            display: flex;
            align-items: center;
        }

        .poem-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .poem-section .section-label {
            color: #92400e;
        }

        .poem-section .section-title {
            color: #78350f;
        }

        .poem-container {
            background: #fffbeb;
            border-radius: 1rem;
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 15px 40px rgba(120, 53, 15, 0.12);
            border: 2px solid #fbbf24;
            margin-top: 1.5rem;
        }

        .poem-image-wrapper {
            width: 100%;
        }

        .poem-image {
            width: 100%;
            max-height: 55vh;
            height: auto;
            border-radius: 0.5rem;
            display: block;
            object-fit: contain;
        }

        .poem-attribution {
            margin-top: 1.25rem;
            text-align: center;
            color: #78350f;
            font-size: 1rem;
            font-style: italic;
        }

        .poem-attribution strong {
            color: #92400e;
            font-weight: 700;
            font-style: normal;
        }

        /* Founder Section */
        .founder-section {
            margin-top: 2.5rem;
            padding: 2rem;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: 1rem;
            display: grid;
            grid-template-columns: 220px 1fr;
            gap: 2rem;
            align-items: center;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .founder-portrait {
            position: relative;
        }

        .founder-portrait-frame {
            width: 100%;
            height: auto;
            border-radius: 1rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            border: 4px solid #f59e0b;
        }

        .founder-content {
            color: white;
        }

        .founder-content h3 {
            font-size: 1.5rem;
            font-family: 'Georgia', serif;
            color: #fbbf24;
            margin-bottom: 0.25rem;
        }

        .founder-content h4 {
            font-size: 1rem;
            color: #cbd5e1;
            font-weight: 300;
            margin-bottom: 1rem;
        }

        .founder-content p {
            font-size: 0.9rem;
            line-height: 1.7;
            color: #e2e8f0;
        }

        .founder-quote {
            margin-top: 1rem;
            padding: 1rem;
            background: rgba(251, 191, 36, 0.1);
            border-left: 3px solid #fbbf24;
            border-radius: 0.5rem;
            font-style: italic;
            font-size: 0.9rem;
            color: #fbbf24;
        }

        /* Delicacies Gallery Section */
        .delicacies {
            padding: 4rem 0;
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .gallery-item {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            background: #fffbeb;
            opacity: 0;
            transform: scale(0.9);

            /* ✅ Force consistent thumbnail shape */
            aspect-ratio: 4 / 3; /* Landscape thumbnail */
        }

        .gallery-item.visible {
            opacity: 1;
            transform: scale(1);
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        }

        .gallery-item > img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            display: block;
            transition: transform 0.5s ease;
            background: #fffbeb;
        }

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

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
            padding: 1.5rem 1rem 1rem;
            transform: translateY(0);
        }

        .gallery-title {
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .gallery-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            background: #f59e0b;
            color: white;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
        }

/* Menu Section (Burgundy Accent Theme) */
.menu {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0b1120 0%, #3a0d14 55%, #0b1120 100%);
}

.menu .section-title {
    color: #ffffff;
}

.menu .section-label {
    color: #fbbf24;
}

.menu .section-subtitle {
    color: #e5e7eb;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.menu-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #7a1a1a;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.menu-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.menu-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    color: #7a1a1a;
    display: block;
    object-fit: contain;
}

.menu-card h3 {
    color: #7a1a1a;
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid #5c1111;
}

.menu-card .menu-description {
    color: #6b7280;
    font-size: 0.8rem;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.menu-card ul {
    list-style: none;
}

.menu-card li {
    padding: 0.35rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9rem;
}

.menu-card li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #7a1a1a; /* ✅ Burgundy Bullet */
}
/* Experience Section — matched to hero */
.experience {
  min-height: calc(100vh - 75px);
  padding: 2rem 0;
  background: linear-gradient(135deg, #0b1120 0%, #3a0d14 55%, #0b1120 100%);
  color: #e5e7eb;
  display: flex;
  align-items: center;
}

.experience .section-title {
  color: #ffffff;
}

/* grid unchanged */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* darker glass cards to suit the hero gradient */
.experience-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.experience-card:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

/* accent colors tuned for dark bg */
.experience-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  color: #eab308;
  display: block;
  object-fit: contain;
}

.experience-card h3 {
  color: #eab308;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.experience-card p {
  line-height: 1.6;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.experience-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 50px;
  color: #eab308;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.experience-tagline svg {
  color: #eab308;
  flex-shrink: 0;
}

/* Awards and Recognition Section */
.awards {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
    padding: 0;
}

.award-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.award-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.85);
}

.award-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.25rem;
}

.award-card:hover .award-image {
    transform: scale(1.05);
}

/* Heritage Items Subsection */
.heritage-items {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(245, 158, 11, 0.2);
    text-align: center;
}

.heritage-items-title {
    font-size: 2rem;
    font-family: 'Georgia', serif;
    color: #78350f;
    margin-bottom: 0.5rem;
}

.heritage-items-subtitle {
    color: #92400e;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.heritage-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.heritage-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.heritage-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.85);
}

.heritage-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.25rem;
}

.heritage-card:hover .heritage-image {
    transform: scale(1.05);
}

.heritage-item-card {
    background: #fffbeb;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.heritage-item-card:hover {
    transform: translateY(-5px);
}

.heritage-item-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    background: #fffbeb;
}

.heritage-item-caption {
    color: #6b7280;
    font-size: 0.9rem;
    font-style: italic;
}

/* Kurry Kaaram Koffee Section */
.kkk-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #0b1120 0%, #3a0d14 55%, #0b1120 100%);
    position: relative;
    overflow: hidden;
}

.kkk-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.kkk-logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 0.4rem;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(203, 180, 122, 0.3));
}

.kkk-section .section-label {
    color: #fbbe246f;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.kkk-section .section-title {
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    font-size: 2.5rem;
}

.kkk-section .section-subtitle {
    color: #e2e8f0;
}

.kkk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.kkk-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(251, 191, 36, 0.2);
    aspect-ratio: 4/3;
}

.kkk-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 70px rgba(251, 191, 36, 0.4);
    border-color: rgba(251, 191, 36, 0.5);
}

.kkk-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.85) contrast(1.1);
}

.kkk-card:hover .kkk-image {
    transform: scale(1.12);
    filter: brightness(1) contrast(1.15);
}

.kkk-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.kkk-card:hover .kkk-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding-bottom: 2rem;
}

.kkk-overlay h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #fbbf24;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
}

.kkk-overlay p {
    font-size: 0.8rem;
    color: #e2e8f0;
    font-style: italic;
    line-height: 1.4;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .kkk-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .kkk-section .section-title {
        font-size: 2rem;
    }
}

/* Hotel Ambience Section */
.ambience {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.ambience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.ambience .section-label {
    color: #fbbf24;
}

.ambience .section-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ambience .section-subtitle {
    color: #cbd5e1;
}

.ambience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.ambience-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(251, 191, 36, 0.1);
}

.ambience-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(251, 191, 36, 0.3);
    border-color: rgba(251, 191, 36, 0.3);
}

.ambience-image-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Portrait orientation - taller aspect ratio */
.ambience-card.portrait .ambience-image-wrapper {
    height: 450px;
}

/* Landscape orientation - wider aspect ratio */
.ambience-card.landscape .ambience-image-wrapper {
    height: 280px;
}

@media (max-width: 768px) {
    .ambience-card.portrait .ambience-image-wrapper {
        height: 350px;
    }
    .ambience-card.landscape .ambience-image-wrapper {
        height: 220px;
    }
}

.ambience-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.ambience-card:hover .ambience-image {
    transform: scale(1.15);
    filter: brightness(1);
}

.ambience-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 2.5rem 2rem 2rem;
    color: white;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.ambience-card:hover .ambience-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.8) 60%, transparent 100%);
    padding-bottom: 2.5rem;
}

.ambience-overlay h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fbbf24;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.ambience-overlay p {
    font-size: 1rem;
    color: #f1f5f9;
    font-style: italic;
    line-height: 1.6;
    opacity: 0.95;
}

.ambience-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: rgba(251, 191, 36, 0.05);
    border-radius: 0.75rem;
    border: 2px dashed rgba(251, 191, 36, 0.3);
}

.ambience-note p {
    color: #92400e;
    font-size: 1rem;
    margin: 0;
}

        /* Locations Section */
        .locations {
            min-height: calc(100vh - 75px);
            padding: 2rem 0;
            background: linear-gradient(135deg, #0b1120 0%, #3a0d14 55%, #0b1120 100%);
            display: flex;
            align-items: center;
        }

        .locations .section-title {
            color: #ffffff;
        }

        .locations .section-label {
            color: #fbbf24;
        }

        .locations .section-subtitle {
            color: #e5e7eb;
        }

        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.25rem;
            margin-top: 2rem;
        }

        .location-card {
            background: #fffbeb;
            border-radius: 0.75rem;
            padding: 1.25rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            border-left: 4px solid #780505;
            transition: all 0.3s ease;
        }

        .location-card:hover {
            transform: translateX(10px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }

        .location-card h3 {
            color: #781515;
            font-size: 1.15rem;
            margin-bottom: 0.25rem;
        }

        .location-year {
            color: #721616;
            font-style: italic;
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
        }

        .location-description {
            color: #64748b;
            line-height: 1.5;
            font-size: 0.9rem;
        }

        .location-badge {
            display: inline-block;
            padding: 0.3rem 0.85rem;
            border-radius: 9999px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-left: 0.75rem;
            vertical-align: middle;
        }

        .location-badge.legacy {
            background: linear-gradient(135deg, #592937, #5e2b3a);
            color: white;
            box-shadow: 0 2px 10px rgba(159, 18, 57, 0.4);
        }

        .location-card.legacy {
            border-left-color: #4b1a28;
        }

        .location-card.legacy h3 {
            color: #4b2631;
        }

        .location-card.legacy .location-year {
            color: #562c37;
        }

        /* Services Section */
        .services {
            padding: 4rem 0;
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .service-card {
            text-align: center;
            padding: 1.5rem;
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
            border-radius: 0.75rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        }

        .service-icon {
            width: 40px;
            height: 40px;
            margin: 0 auto 0.75rem;
            color: #6a1212;
        }

        .service-card h3 {
            color: #4e0707;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .service-card p {
            color: #64748b;
            line-height: 1.5;
            font-size: 0.9rem;
        }

/* Contact Form Section */
.contact-section {
    min-height: calc(100vh - 75px);
    padding: 2rem 0;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    display: flex;
    align-items: center;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 2.5rem;
}

.contact-form-container {
    background: #fffbeb;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #f59e0b, #d97706);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    background: linear-gradient(to right, #d97706, #b45309);
}

/* Contact Info Sidebar */
.contact-info {
    background: linear-gradient(135deg, #0b1120 0%, #3a0d14 55%, #0b1120 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.contact-info > p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    color: #fbbf24;
    flex-shrink: 0;
}

.contact-info-item h4 {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #e5e7eb;
    font-size: 0.9rem;
    margin: 0;
}

.phone-link,
.email-link {
    display: block;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    color: #fcd34d;
}

        /* Footer - Original Vercel Style */
        footer {
            background: linear-gradient(135deg, #0b1120 0%, #3a0d14 55%, #0b1120 100%);
            color: white;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .footer-logo {
            height: 50px;
            width: auto;
        }

        .footer-brand-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: #fbbf24;
        }

        .footer-tagline {
            color: rgba(251, 191, 36, 0.6);
            font-weight: 300;
        }

        .footer-section h4 {
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(251, 191, 36, 0.8);
            font-size: 0.875rem;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #fcd34d;
        }

        .footer-info p {
            color: rgba(251, 191, 36, 0.8);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .footer-phone-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin: 1rem 0;
        }

        .footer-cta-btn,
        .footer-email-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(251, 191, 36, 0.1);
            border: 1px solid rgba(251, 191, 36, 0.3);
            border-radius: 0.5rem;
            color: #fbbf24;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .footer-cta-btn:hover,
        .footer-email-btn:hover {
            background: rgba(251, 191, 36, 0.2);
            border-color: rgba(251, 191, 36, 0.5);
            transform: translateX(5px);
        }

        .footer-email-btn {
            margin-top: 0.5rem;
        }

        .footer-divider {
            border-top: 1px solid rgba(120, 53, 15, 0.3);
            padding-top: 2rem;
            text-align: center;
            color: rgba(251, 191, 36, 0.6);
            font-size: 0.875rem;
        }

        /* Responsive Design */

        /* Large screens (laptops) */
        @media (max-width: 1400px) {
            .nav-container {
                padding: 0.75rem 1.5rem;
                height: 65px;
            }

            .nav-logo-symbol {
                width: 65px;
                height: 65px;
            }

            .nav-subtitle {
                font-size: 1.1rem;
            }

            .nav-est {
                font-size: 0.85rem;
            }
        }

        /* Medium screens (tablets landscape) */
        @media (max-width: 1024px) {
            .nav-container {
                padding: 0.5rem 1.25rem;
                height: 55px;
            }

            .nav-logo-symbol {
                width: 55px;
                height: 55px;
            }

            .nav-subtitle {
                font-size: 1rem;
            }

            .nav-est {
                font-size: 0.75rem;
                padding: 0.2rem 0.6rem;
            }

            .logo-symbol-wrapper,
            .logo-symbol-circle {
                width: 120px;
                height: 120px;
            }

            .logo-main-text {
                font-size: 3.5rem;
            }

            .logo-hotel-text {
                font-size: 1.5rem;
            }

            .logo-location-text {
                font-size: 1.25rem;
            }

            .section-title {
                font-size: 2.25rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .heritage,
            .delicacies,
            .menu,
            .experience,
            .locations,
            .services,
            .awards,
            .ambience,
            .contact-section {
                padding: 3rem 0;
            }

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

            .poem-section {
                padding: 2.5rem 0;
            }
        }

        /* Small screens (tablets portrait, large phones) */
        @media (max-width: 768px) {
            body::before {
                width: 120px;
                opacity: 0.1;
            }

            .hero-statue {
                height: 65vh;
                opacity: 0.3;
            }

            /* Responsive icons for smaller screens */
            .experience-icon {
                width: 40px;
                height: 40px;
            }

            .menu-icon {
                width: 40px;
                height: 40px;
            }

            /* Menu section responsive */
            .menu {
                padding: 2rem 0;
            }

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

            .menu-card {
                padding: 1rem;
            }

            .menu-card h3 {
                font-size: 1rem;
            }

            .menu-card li {
                font-size: 0.8rem;
                padding: 0.25rem 0;
            }

            .menu-card .menu-description {
                font-size: 0.75rem;
            }

            .nav-container {
                padding: 0.5rem 1rem;
                height: 55px;
            }

            .nav-logo-symbol {
                width: 45px;
                height: 45px;
            }

            .nav-subtitle {
                font-size: 0.9rem;
            }

            .nav-est {
                font-size: 0.7rem;
                padding: 0.2rem 0.5rem;
            }

            .logo-symbol-wrapper,
            .logo-symbol-circle {
                width: 100px;
                height: 100px;
                padding: 12px;
            }

            .logo-main-text {
                font-size: 2.75rem;
            }

            .logo-hotel-text {
                font-size: 1.25rem;
                letter-spacing: 0.3em;
                margin-left: 0.3em;
            }

            .logo-location-text {
                font-size: 1.1rem;
            }

            .hero-tagline {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

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

            .section-title-poem {
                font-size: 1.5rem;
            }

            .section-header {
                margin-bottom: 1.5rem;
            }

            .hero {
                height: 100vh;
                min-height: 500px;
            }

            .heritage,
            .poem-section,
            .experience,
            .locations,
            .contact-section {
                min-height: calc(100vh - 55px);
                padding: 1.5rem 0;
            }

            .heritage {
                padding: 0;
            }

            /* Mobile: Stack founder section */
            .founder-split-layout {
                grid-template-columns: 1fr;
            }

            .founder-image-panel {
                height: 60vh;
            }

            .founder-content-panel {
                padding: 2rem 1.5rem;
            }

            .founder-name {
                font-size: 2rem;
            }

            .story-card {
                padding: 2rem 1.5rem;
                margin: 1rem;
            }

            .story-title {
                font-size: 2rem;
            }

            .poem-section {
                padding: 3rem 1.5rem;
            }

            .poem-title {
                font-size: 2rem;
            }

            .poem-image-large {
                max-width: 100%;
            }

            .menu,
            .services {
                padding: 2.5rem 0;
            }

            .heritage-image {
                max-height: 50vh;
            }

            .poem-image {
                max-height: 45vh;
            }

            .delicacies,
            .awards {
                padding: 2.5rem 0;
            }

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

            .poem-container {
                padding: 0.75rem;
            }

            .founder-section {
                grid-template-columns: 1fr;
                padding: 1.5rem;
                margin-top: 2rem;
            }

            .founder-content h3 {
                font-size: 1.25rem;
            }

            .menu-grid,
            .experience-grid,
            .location-grid,
            .services-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .footer-container {
                padding: 2rem 1rem;
            }
        }

        /* Extra small screens (phones) */
        @media (max-width: 480px) {
            body::before {
                width: 80px;
                opacity: 0.08;
            }

            .hero-statue {
                height: 50vh;
                opacity: 0.25;
            }

            /* Responsive icons for mobile */
            .experience-icon {
                width: 36px;
                height: 36px;
            }

            .menu-icon {
                width: 36px;
                height: 36px;
            }

            /* Menu section mobile */
            .menu {
                padding: 1.5rem 0;
            }

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

            .menu-card {
                padding: 0.875rem;
            }

            .menu-card h3 {
                font-size: 0.95rem;
            }

            .menu-card li {
                font-size: 0.75rem;
                padding: 0.2rem 0;
                padding-left: 1rem;
            }

            .menu-card .menu-description {
                font-size: 0.7rem;
                margin-bottom: 0.5rem;
            }

            .nav-container {
                padding: 0.25rem 0.75rem;
                height: 50px;
            }

            .nav-logo-symbol {
                width: 40px;
                height: 40px;
            }

            .nav-subtitle {
                font-size: 0.8rem;
            }

            .nav-est {
                font-size: 0.65rem;
                letter-spacing: 0.15em;
                padding: 0.15rem 0.4rem;
            }

            .logo-symbol-wrapper,
            .logo-symbol-circle {
                width: 80px;
                height: 80px;
                padding: 10px;
            }

            .logo-main-text {
                font-size: 2rem;
            }

            .logo-hotel-text {
                font-size: 1rem;
                letter-spacing: 0.2em;
                margin-left: 0.2em;
            }

            .logo-location-text {
                font-size: 0.9rem;
                margin-left: 0.1em;
            }

            .hero-tagline {
                font-size: 0.9rem;
            }

            .hero-cta {
                padding: 0.6rem 1.25rem;
                font-size: 0.85rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .section-header {
                margin-bottom: 1.25rem;
            }

            .heritage,
            .delicacies,
            .menu,
            .experience,
            .locations,
            .services {
                padding: 2rem 0;
            }

            .poem-section {
                padding: 1.5rem 0;
            }

            .founder-section {
                padding: 1.25rem;
                gap: 1rem;
            }

            .container {
                padding: 0 1rem;
            }

            .footer-container {
                padding: 1.5rem 1rem;
            }

            .footer-grid {
                gap: 1.5rem;
            }
        }
