			/* ==========================================================================
           1. MUUTTUJAT & PERUSASETUKSET
           ========================================================================== */
        :root {
            /* Värit */
            --c-dark: #1C1917;
            --c-light: #FAFAF5;
            --c-red: #7A201F;
            --c-red-dark: #5a1716;
            --c-gold: #D4AF37;
            
            --c-gray-100: #f3f4f6;
            --c-gray-200: #e5e7eb;
            --c-gray-300: #d1d5db;
            --c-gray-400: #9ca3af;
            --c-gray-500: #6b7280;
            --c-gray-600: #4b5563;
            --c-gray-800: #1f2937;
            
            /* Typografia */
            --font-sans: 'Inter', sans-serif;
            --font-serif: 'Playfair Display', serif;
            
            /* Varjot */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

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

        html { scroll-behavior: smooth; scroll-padding-top: 90px; }
        
        body { 
            font-family: var(--font-sans); 
            background-color: var(--c-light); 
            color: var(--c-dark); 
            overflow-x: hidden; 
            width: 100%; 
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        ::selection { background-color: var(--c-red); color: white; }

        /* Yleiset typografialuokat */
        .font-serif { font-family: var(--font-serif); }
        .font-sans { font-family: var(--font-sans); }
        .font-light { font-weight: 300; }
        .font-normal { font-weight: 400; }
        .font-semibold { font-weight: 600; }
        .font-bold { font-weight: 700; }
        .italic { font-style: italic; }
        .uppercase { text-transform: uppercase; }
        .text-center { text-align: center; }
        
        .tracking-wide { letter-spacing: 0.025em; }
        .tracking-wider { letter-spacing: 0.05em; }
        .tracking-widest { letter-spacing: 0.1em; }
        .tracking-ultra { letter-spacing: 0.3em; }

        /* Yleiset rakenneluokat */
        .container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
        @media (min-width: 768px) { .container { padding: 0 3rem; } }
        
        .container-sm { max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
        @media (min-width: 768px) { .container-sm { padding: 0 3rem; } }

        .section-py { padding: 6rem 0; }
        .mb-4 { margin-bottom: 1rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }
        .mb-12 { margin-bottom: 3rem; }

        .hidden { display: none !important; }
        
        /* ==========================================================================
           2. KOMPONENTIT JA ELEMENTIT
           ========================================================================== */
        
        /* --- Top Bar --- */
        .top-bar {
            position: absolute; top: 0; left: 0; width: 100%; z-index: 70;
            background-color: var(--c-dark); color: var(--c-light);
            padding: 0.5rem 1.5rem; font-size: 0.75rem; letter-spacing: 0.05em;
            display: flex; flex-direction: column; justify-content: space-between; align-items: center;
            transition: transform 0.5s;
        }
        @media (min-width: 768px) {
            .top-bar { flex-direction: row; padding: 0.5rem 3rem; font-size: 0.875rem; }
        }
        .top-bar.is-hidden { transform: translateY(-100%); }
        .top-bar-links { display: flex; gap: 1.5rem; margin-bottom: 0.5rem; }
        @media (min-width: 768px) { .top-bar-links { margin-bottom: 0; } }
        .top-bar a { display: flex; items-center; gap: 0.5rem; color: inherit; text-decoration: none; transition: color 0.3s; }
        .top-bar a:hover { color: var(--c-gold); }

        /* --- Navbar --- */
        .navbar {
            position: fixed; width: 100%; z-index: 60; transition: all 0.5s ease-in-out;
        }
        .nav-initial { top: 56px; padding: 1.5rem 0; background: transparent; }
        @media (min-width: 768px) { .nav-initial { top: 36px; } }
        .nav-scrolled {
            top: 0; padding: 1rem 0; background: rgba(250, 250, 245, 0.9);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            box-shadow: var(--shadow-sm); border-bottom: 1px solid rgba(255,255,255,0.4);
        }
        .nav-menu-open { top: 0; padding: 1rem 0; background: transparent; }

        .nav-inner { display: flex; justify-content: space-between; align-items: center; }
        .nav-logo-wrap { display: flex; align-items: center; z-index: 50; cursor: pointer; text-decoration: none; }
        .nav-logo-img { height: 4rem; width: auto; object-fit: contain; transition: opacity 0.3s; }
        @media (min-width: 768px) { .nav-logo-img { height: 5rem; } }
        
        .nav-desktop { display: none; align-items: center; gap: 1.5rem; }
        @media (min-width: 1024px) { .nav-desktop { display: flex; } }
        @media (min-width: 1280px) { .nav-desktop { gap: 2rem; } }

        .nav-link {
            font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
            transition: color 0.3s duration-300;
        }
        .nav-link.text-white { color: white; }
        .nav-link.text-dark { color: var(--c-dark); }
        .nav-link:hover { color: var(--c-gold) !important; }

        .btn-book-nav {
            background: var(--c-red); color: white; padding: 0.625rem 1.5rem; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase;
            display: flex; align-items: center; gap: 0.5rem; text-decoration: none; transition: background 0.3s; box-shadow: var(--shadow-md); margin-left: 0.5rem;
        }
        .btn-book-nav:hover { background: var(--c-red-dark); }

        /* --- Mobile Menu & Burger --- */
        .mobile-btn {
            display: flex; align-items: center; justify-content: center; width: 3rem; height: 3rem; border-radius: 9999px; z-index: 50; cursor: pointer; transition: all 0.3s; border: 1px solid transparent;
        }
        @media (min-width: 1024px) { .mobile-btn { display: none; } }
        .btn-initial { background: rgba(0,0,0,0.2); backdrop-filter: blur(4px); border-color: rgba(255,255,255,0.2); color: white; }
        .btn-scrolled { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.1); color: var(--c-dark); }
        .btn-menu-open { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: white; }

        .mobile-menu-overlay {
            position: fixed; inset: 0; z-index: 50; background: rgba(28, 25, 23, 0.95); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
            display: flex; flex-col; items-center; justify-center; padding-top: 4rem;
            opacity: 0; pointer-events: none; transform: translateY(-2rem); transition: all 0.5s ease-in-out;
        }
        @media (min-width: 1024px) { .mobile-menu-overlay { display: none; } }
        .mobile-menu-overlay.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
        .mobile-menu-content { display: flex; flex-direction: column; align-items: center; gap: 2rem; width: 100%; padding: 0 1.5rem; }
        .mobile-link { font-family: var(--font-serif); font-size: 1.875rem; color: white; text-decoration: none; transition: color 0.3s; filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07)); }
        .mobile-link:hover { color: var(--c-gold); }
        .mobile-divider { width: 4rem; height: 1px; background: rgba(255,255,255,0.2); margin: 1rem 0; }
        .btn-book-mobile { background: var(--c-red); color: white; padding: 1rem 2.5rem; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 0.5rem; text-decoration: none; transition: background 0.3s; box-shadow: var(--shadow-lg); width: 100%; max-width: 20rem; text-align: center; }
        .btn-book-mobile:hover { background: var(--c-red-dark); }

        /* --- Hero Section --- */
        .hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--c-dark); }
        .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.5), var(--c-light)); z-index: 20; pointer-events: none; }
        .hero-content { position: relative; z-index: 30; text-align: center; padding: 0 1.5rem; max-width: 95%; width: 100%; margin-top: 5rem; }
        @media (min-width: 1024px) { .hero-content { max-width: 80rem; } }
        
        .hero-subtitle { color: var(--c-gold); font-size: 0.875rem; text-transform: uppercase; margin-bottom: 1.5rem; filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07)); }
        @media (min-width: 768px) { .hero-subtitle { font-size: 1rem; } }
        .hero-title { font-family: var(--font-serif); font-size: 2.25rem; color: white; line-height: 1.25; margin-bottom: 2rem; filter: drop-shadow(0 10px 8px rgba(0,0,0,0.04)); }
        @media (min-width: 640px) { .hero-title { font-size: 3rem; } }
        @media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
        @media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }
        .hero-title span { color: rgba(250, 250, 245, 0.9); font-style: italic; }

        .hero-btns { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-top: 3rem; }
        @media (min-width: 640px) { .hero-btns { flex-direction: row; } }
        .btn-primary { background: var(--c-red); color: white; padding: 1rem 2.5rem; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; text-align: center; box-shadow: var(--shadow-lg); width: 100%; display: block; }
        @media (min-width: 640px) { .btn-primary { width: auto; } }
        .btn-primary:hover { background: var(--c-red-dark); transform: scale(1.05); }
        .btn-outline { border: 1px solid white; color: white; padding: 1rem 2.5rem; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: all 0.3s; text-align: center; width: 100%; display: block; }
        @media (min-width: 640px) { .btn-outline { width: auto; } }
        .btn-outline:hover { background: white; color: var(--c-dark); }

        /* Hero Slideshow Animations */
        .hero-slide { transition: opacity 2s ease-in-out; }
        @keyframes heroZoom { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }
        .animate-heroZoom { animation: heroZoom 8s linear forwards; }
        .hero-slide-active { opacity: 0.6; z-index: 10; }
        .hero-slide-inactive { opacity: 0; z-index: 0; }

        /* --- Miljöö Section --- */
        .miljoo-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
        @media (min-width: 768px) { .miljoo-grid { grid-template-columns: repeat(2, 1fr); } }
        .heading-2 { font-family: var(--font-serif); font-size: 2.25rem; color: var(--c-red); line-height: 1.25; margin-bottom: 1.5rem; }
        @media (min-width: 768px) { .heading-2 { font-size: 3rem; } }
        .heading-line { width: 4rem; height: 2px; background: var(--c-gold); margin-bottom: 2rem; }
        .text-body { font-size: 1.125rem; color: var(--c-gray-600); line-height: 1.625; font-weight: 300; margin-bottom: 1.5rem; }
        
        .miljoo-timeline { display: flex; gap: 1.5rem; margin-top: 2rem; }
        .timeline-item { display: flex; flex-direction: column; }
        .timeline-year { font-family: var(--font-serif); font-size: 1.875rem; color: var(--c-red); }
        .timeline-text { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-gray-500); margin-top: 0.25rem; }
        .timeline-divider { width: 1px; background: var(--c-gray-300); }

        .img-wrap-framed { position: relative; }
        .img-frame { aspect-ratio: 4/5; background: var(--c-gray-200); position: relative; overflow: hidden; }
        .img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
        .img-wrap-framed:hover .img-frame img { transform: scale(1.1); }
        .img-border { position: absolute; inset: 0; border: 10px solid rgba(250, 250, 245, 0.2); margin: 1rem; pointer-events: none; }

        /* --- Lounas Section --- */
        .lounas-section { background: var(--c-light); border-top: 1px solid var(--c-gray-200); }
        .lounas-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
        @media (min-width: 1024px) { .lounas-grid { grid-template-columns: repeat(2, 1fr); } }
        .subtitle-gold { color: var(--c-gold); letter-spacing: 0.3em; font-size: 0.875rem; text-transform: uppercase; margin-bottom: 1rem; display: block; }
        .heading-1-dark { font-family: var(--font-serif); font-size: 2.25rem; color: var(--c-dark); margin-bottom: 2rem; }
        @media (min-width: 768px) { .heading-1-dark { font-size: 3.75rem; } }
        
        .price-box { background: white; border: 1px solid var(--c-gray-200); padding: 1.5rem; display: inline-block; box-shadow: var(--shadow-sm); margin-bottom: 2rem; }
        .price-row { font-family: var(--font-serif); font-size: 1.25rem; color: var(--c-dark); margin-bottom: 0.5rem; }
        .price-row:last-child { margin-bottom: 0; }
        .price-val { color: var(--c-red); margin-left: 1rem; font-weight: 700; font-family: var(--font-sans); }

        .lounas-img-wrap { margin-top: 2rem; position: relative; display: none; max-width: 80%; }
        @media (min-width: 1024px) { .lounas-img-wrap { display: block; } }
        .lounas-img { width: 100%; height: auto; object-fit: cover; border: 8px solid white; box-shadow: var(--shadow-xl); transform: rotate(-2deg); transition: transform 0.5s; }
        .lounas-img-wrap:hover .lounas-img { transform: rotate(0); }

        .list-box { background: white; color: var(--c-dark); padding: 2rem; position: relative; overflow: hidden; box-shadow: var(--shadow-xl); border: 1px solid var(--c-gray-100); }
        @media (min-width: 1024px) { .list-box { padding: 2.5rem; } }
        .list-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; border-bottom: 1px solid var(--c-gray-100); padding-bottom: 1rem; }
        .list-title { font-family: var(--font-serif); font-size: 1.875rem; color: var(--c-red); }
        .lunch-item { border-bottom: 1px dashed rgba(122, 32, 31, 0.2); margin-bottom: 1rem; padding-bottom: 1rem; }
        .lunch-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .lunch-item h4 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--c-dark); margin-bottom: 0.25rem; }
        .lunch-item p { color: var(--c-gray-600); font-weight: 300; line-height: 1.625; }

        .list-footer { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--c-gray-100); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
        .list-footer p { font-size: 0.75rem; color: var(--c-gray-400); text-transform: uppercase; letter-spacing: 0.1em; }
        .list-footer a { display: inline-flex; align-items: center; font-size: 0.75rem; color: var(--c-red); font-weight: 600; text-transform: uppercase; text-decoration: none; transition: color 0.3s; margin-top: 0.5rem; }
        .list-footer a:hover { color: var(--c-gold); }

        /* --- Tapahtumat Section --- */
        .tapahtumat-section { background: white; border-top: 1px solid var(--c-gray-100); }
        .tapahtumat-header { font-family: var(--font-serif); font-size: 1.875rem; color: var(--c-red); display: flex; align-items: center; gap: 0.75rem; margin-bottom: 3rem; }
        @media (min-width: 768px) { .tapahtumat-header { font-size: 2.25rem; } }
        .tapahtumat-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
        @media (min-width: 768px) { .tapahtumat-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .tapahtumat-grid { grid-template-columns: repeat(3, 1fr); } }
        .event-card { background: var(--c-light); padding: 1.5rem; box-shadow: var(--shadow-sm); border-left: 4px solid var(--c-red); display: flex; flex-direction: column; height: 100%; transition: transform 0.3s; }
        .event-card:hover { transform: translateY(-0.25rem); }
        .event-date { color: var(--c-gold); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
        .event-title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--c-dark); }
        .event-desc { color: var(--c-gray-600); font-size: 0.875rem; line-height: 1.625; margin-top: auto; }

        /* --- Ruoka Section --- */
        .ruoka-section { background: var(--c-light); border-top: 1px solid var(--c-gray-200); }
        .ruoka-info { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
        .ruoka-info-text { color: var(--c-red); font-family: var(--font-serif); font-style: italic; font-size: 1.125rem; text-align: center; padding: 0 1rem; line-height: 1.625; }
        @media (min-width: 768px) { .ruoka-info-text { font-size: 1.25rem; } }
        .ruoka-dots { display: flex; gap: 0.5rem; }
        .ruoka-dot { width: 0.5rem; height: 0.5rem; border-radius: 9999px; background: var(--c-gold); }
        .ruoka-dot.dim { opacity: 0.5; }
        
        .takeaway-link { font-size: 0.875rem; font-weight: 600; color: var(--c-dark); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2.5rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; text-decoration: none; transition: color 0.3s; border: 1px solid var(--c-gray-200); padding: 0.75rem 1.5rem; border-radius: 9999px; box-shadow: var(--shadow-sm); background: white; }
        .takeaway-link:hover { color: var(--c-red); }

        .tabs-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 4rem; }
        .tab-btn { padding: 0.75rem 2rem; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s; cursor: pointer; border: 1px solid var(--c-gray-200); background: white; color: var(--c-dark); }
        .tab-btn:hover { background: var(--c-light); }
        .tab-btn.active { background: var(--c-red); color: white; border-color: var(--c-red); box-shadow: var(--shadow-md); }

        .menu-content { position: relative; min-height: 400px; }
        .menu-category { display: grid; gap: 3rem; grid-template-columns: 1fr; }
        @media (min-width: 768px) { .menu-category { grid-template-columns: repeat(2, 1fr); column-gap: 4rem; } }
        
        .menu-item { border-bottom: 1px solid var(--c-gray-200); padding-bottom: 1.5rem; }
        .menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.75rem; }
        .menu-item-title { font-size: 1.25rem; font-family: var(--font-serif); color: var(--c-dark); }
        @media (min-width: 768px) { .menu-item-title { font-size: 1.5rem; } }
        .menu-item-price { font-family: var(--font-serif); font-size: 1.125rem; color: var(--c-red); font-weight: 700; flex-shrink: 0; margin-left: 1rem; }
        .menu-item-desc { color: var(--c-gray-500); font-weight: 300; line-height: 1.625; font-size: 0.875rem; }
        @media (min-width: 768px) { .menu-item-desc { font-size: 1rem; } }
        .menu-item-note { font-size: 0.75rem; color: var(--c-gold); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 1rem; }

        @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        .menu-item-anim { animation: fadeInUp 0.5s ease-out forwards; opacity: 0; }

        /* --- Galleria Section --- */
        .galleria-section { background: white; border-top: 1px solid var(--c-gray-100); overflow: hidden; position: relative; width: 100%; }
        .galleria-wrap { position: relative; width: 100%; margin: 0 auto; overflow: hidden; padding: 0; }
        
        .gal-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; background: rgba(255,255,255,0.9); padding: 0.75rem; border-radius: 9999px; box-shadow: var(--shadow-lg); color: var(--c-dark); border: none; cursor: pointer; transition: all 0.3s; }
        .gal-btn:hover { background: var(--c-red); color: white; }
        .gal-btn-prev { left: 0.5rem; }
        .gal-btn-next { right: 0.5rem; }
        @media (min-width: 768px) { .gal-btn-prev { left: 2rem; } .gal-btn-next { right: 2rem; } }

        .gallery-track { display: flex; overflow-x: auto; gap: 1rem; padding: 0 1rem; scroll-snap-type: x mandatory; scroll-behavior: smooth; width: 100%; }
        .no-scrollbar::-webkit-scrollbar { display: none; }
        .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
        
        .gallery-item { width: 280px; height: 350px; scroll-snap-align: center; overflow: hidden; border: 1px solid var(--c-gray-200); background: var(--c-gray-100); position: relative; flex-shrink: 0; cursor: pointer; }
        @media (min-width: 768px) { .gallery-item { width: 320px; height: 400px; } }
        @media (min-width: 1024px) { .gallery-item { width: 400px; height: 500px; } }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
        .gallery-item:hover img { transform: scale(1.05); }

        /* --- Majoitus Section --- */
        .majoitus-section { background: var(--c-dark); color: white; position: relative; overflow: hidden; }
        .majoitus-bg-glow { position: absolute; top: 0; right: 0; width: 16rem; height: 16rem; background: var(--c-red); border-radius: 9999px; filter: blur(120px); opacity: 0.2; pointer-events: none; }
        .majoitus-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem auto; position: relative; z-index: 10; }
        
        .majoitus-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; position: relative; z-index: 10; }
        @media (min-width: 1024px) { .majoitus-grid { grid-template-columns: repeat(3, 1fr); } }

        .room-card {
            position: relative; overflow: hidden; height: 450px; border-radius: 0.125rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5); cursor: pointer;
            -webkit-tap-highlight-color: transparent; background: var(--c-gray-800); border: 1px solid rgba(255,255,255,0.1);
        }
        .room-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s ease; }
        .room-content {
            position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem;
            background: linear-gradient(to top, rgba(28,25,23,0.95) 0%, rgba(28,25,23,0.7) 60%, transparent 100%);
            transform: translateY(120px); transition: transform 0.5s ease-out;
        }
        .room-badge { display: inline-block; background: var(--c-gold); color: var(--c-dark); font-weight: 700; font-size: 0.75rem; padding: 0.25rem 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; box-shadow: var(--shadow-md); }
        .room-title { font-family: var(--font-serif); font-size: 1.875rem; color: white; margin-bottom: 0.25rem; filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07)); }
        .room-price { color: var(--c-gold); font-family: var(--font-serif); font-size: 1.25rem; display: block; margin-bottom: 0.5rem; }
        .room-price span { font-size: 0.875rem; font-family: var(--font-sans); color: var(--c-gray-300); font-weight: 300; }
        
        .room-details { opacity: 0; transition: opacity 0.5s ease-out; margin-top: 1rem; }
        .room-desc { color: var(--c-gray-300); font-weight: 300; margin-bottom: 1rem; font-size: 0.875rem; line-height: 1.625; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 1rem; }
        .room-features { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.8); }
        .room-features li { display: flex; align-items: center; gap: 0.5rem; }
        
        @media (hover: hover) and (pointer: fine) {
            .room-card:hover .room-bg { transform: scale(1.08); }
            .room-card:hover .room-content { transform: translateY(0); }
            .room-card:hover .room-details { opacity: 1; }
        }
        .room-card.is-active .room-bg { transform: scale(1.08); }
        .room-card.is-active .room-content { transform: translateY(0); }
        .room-card.is-active .room-details { opacity: 1; }

        /* --- Ajankohtaista Section --- */
        .ajankohtaista-section { background: white; border-bottom: 1px solid var(--c-gray-100); }
        .ajankohtaista-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
        @media (min-width: 1024px) { .ajankohtaista-grid { grid-template-columns: repeat(2, 1fr); } }
        
        .social-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
        .btn-social { display: inline-flex; align-items: center; gap: 0.5rem; color: white; padding: 0.75rem 1.5rem; font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; box-shadow: var(--shadow-md); text-decoration: none; transition: opacity 0.3s, background 0.3s; }
        .btn-fb { background: #1877F2; } .btn-fb:hover { background: #166FE5; }
        .btn-ig { background: linear-gradient(to right, #833AB4, #FD1D1D, #F56040); } .btn-ig:hover { opacity: 0.9; }

        .fb-iframe-wrap { width: 100%; max-width: 400px; background: white; border-radius: 0.125rem; box-shadow: var(--shadow-xl); border: 1px solid var(--c-gray-200); overflow: hidden; margin: 0 auto; }
        @media (min-width: 1024px) { .fb-iframe-wrap { margin: 0 0 0 auto; } }

        /* --- Juhlat Section --- */
        .juhlat-section { background: var(--c-light); }
        .juhlat-img-wrap { aspect-ratio: 4/5; background: var(--c-gray-200); position: relative; overflow: hidden; padding: 0.75rem; background: white; box-shadow: var(--shadow-xl); transform: rotate(1deg); transition: transform 0.5s; }
        @media (min-width: 768px) { .juhlat-img-wrap { aspect-ratio: 1/1; } }
        .juhlat-img-wrap:hover { transform: rotate(0); }
        .juhlat-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .juhlat-img-border { position: absolute; inset: 1.5rem; border: 2px solid rgba(255,255,255,0.4); pointer-events: none; }
        
        .link-inline { display: inline-flex; align-items: center; color: var(--c-red); font-weight: 600; letter-spacing: 0.025em; text-transform: uppercase; font-size: 0.875rem; text-decoration: none; border-bottom: 2px solid var(--c-red); padding-bottom: 0.25rem; transition: color 0.3s; }
        .link-inline:hover { color: var(--c-gold); }

        /* --- Yhteydenotto Section --- */
        .contact-section { background: white; border-top: 1px solid var(--c-gray-100); }
        .contact-info-box { margin-top: 3rem; padding: 2rem; background: var(--c-light); border: 1px solid var(--c-gray-100); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; }
        .contact-info-link { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--c-dark); text-decoration: none; transition: color 0.3s; }
        .contact-info-link:hover { color: var(--c-gold); }

        .form-box { background: white; padding: 2rem; box-shadow: var(--shadow-xl); border: 1px solid var(--c-gray-100); position: relative; }
        @media (min-width: 768px) { .form-box { padding: 2.5rem; } }
        .form-top-line { position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--c-red); }
        
        .form-row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
        @media (min-width: 768px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
        
        .form-group { display: flex; flex-direction: column; }
        .form-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--c-gray-500); margin-bottom: 0.5rem; }
        .form-input { width: 100%; padding: 0.75rem 1rem; background: var(--c-light); border: 1px solid var(--c-gray-200); outline: none; transition: all 0.3s; border-radius: 0.125rem; font-size: 0.875rem; color: var(--c-dark); font-family: var(--font-sans); }
        .form-input:focus { border-color: var(--c-red); box-shadow: 0 0 0 1px var(--c-red); }
        textarea.form-input { resize: vertical; }

        .btn-submit { width: 100%; background: var(--c-red); color: white; padding: 1rem 2rem; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.3s; box-shadow: var(--shadow-md); display: flex; justify-content: center; align-items: center; gap: 0.5rem; }
        .btn-submit:hover:not(:disabled) { background: var(--c-red-dark); }
        
        /* Form states */
        .btn-loading { opacity: 0.8; cursor: not-allowed; }
        .btn-success { background: #15803d !important; }
        .btn-error { background: #dc2626 !important; }
        
        .form-error-box { margin-top: 1rem; padding: 1rem; border: 1px solid #ef4444; background: #fef2f2; color: #b91c1c; font-size: 0.75rem; text-align: center; border-radius: 0.25rem; }

        /* --- Kahvi Banneri --- */
        .coffee-banner { background: var(--c-red); color: var(--c-light); padding: 1rem 0; border-bottom: 4px solid var(--c-red-dark); }
        .coffee-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; font-size: 0.875rem; }
        @media (min-width: 768px) { .coffee-inner { flex-direction: row; gap: 2rem; text-align: left; } }
        .coffee-brand { display: flex; align-items: center; gap: 0.75rem; }
        .coffee-divider { display: none; width: 1px; height: 1.5rem; background: rgba(255,255,255,0.2); }
        @media (min-width: 768px) { .coffee-divider { display: block; } }

        /* --- Footer --- */
        .footer { background: var(--c-dark); color: white; padding: 6rem 0 3rem 0; }
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem; }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
        
        .footer-title { color: white; font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 1.5rem; }
        .footer-subtitle { color: var(--c-gold); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
        
        .footer-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; color: var(--c-gray-400); font-weight: 300; font-size: 0.875rem; }
        .footer-list li { display: flex; align-items: flex-start; gap: 1rem; }
        .footer-list a { color: inherit; text-decoration: none; transition: color 0.3s; }
        .footer-list a:hover { color: white; }
        
        .footer-socials { display: flex; gap: 1rem; margin-bottom: 2.5rem; }
        .footer-social-btn { width: 2.5rem; height: 2.5rem; background: rgba(255,255,255,0.1); border-radius: 9999px; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: all 0.3s; }
        .footer-social-btn.fb:hover { background: #1877F2; }
        .footer-social-btn.ig:hover { background: linear-gradient(to right, #833AB4, #FD1D1D, #F56040); }

        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; display: flex; flex-direction: column; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--c-gray-500); gap: 0.5rem; }
        @media (min-width: 768px) { .footer-bottom { flex-direction: row; gap: 0; } }
        .footer-bottom a { color: inherit; text-decoration: none; transition: color 0.3s; }
        .footer-bottom a:hover { color: white; }

        /* Oiva */
        .oiva-box { width: 3.5rem; height: 4rem; background: white; padding: 0.25rem; cursor: pointer; transition: transform 0.3s; display: flex; align-items: center; justify-content: center; overflow: hidden; }
        .oiva-box:hover { transform: scale(1.05); }
        .oiva-box img { width: 100%; height: 100%; object-fit: contain; opacity: 0.9; transition: opacity 0.3s; }
        .oiva-box:hover img { opacity: 1; }

        .modal-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.8); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 1rem; }
        .modal-content { position: relative; max-width: 42rem; width: 100%; background: white; padding: 0.5rem; border-radius: 0.375rem; display: flex; flex-direction: column; align-items: center; }
        .modal-close { position: absolute; top: -3rem; right: 0; color: rgba(255,255,255,0.7); background: transparent; border: none; cursor: pointer; padding: 0.5rem; transition: color 0.3s; }
        .modal-close:hover { color: white; }
        .modal-img { width: 100%; height: auto; max-height: 85vh; object-fit: contain; }

        /* --- Scroll Reveal Animaatio --- */
        .reveal-section { opacity: 0; transform: translateY(3rem); transition: all 1s ease-out; }
        .reveal-section.visible { opacity: 1; transform: translateY(0); }
