
        :root {
            --c-dark: #803212;
            --c-primary: #C56322;
            --c-light: #E29A6B;
            --c-bg: #FDFBF9;
            --c-accent: #E5A93D;
            --c-gray-100: #f3f4f6;
            --c-gray-200: #e5e7eb;
            --c-gray-600: #4b5563;
            --c-gray-700: #374151;
            --c-gray-800: #1f2937;
            
            --font-sans: 'Inter', sans-serif;
            --font-serif: 'Playfair Display', serif;
            
            --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);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --shadow-glass: 0 10px 40px -10px rgba(128, 50, 18, 0.15);
            --shadow-soft: 0 20px 40px -15px rgba(0,0,0,0.05);
            --shadow-glow: 0 0 20px rgba(226, 154, 107, 0.25);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            color: var(--c-gray-800);
            background-color: var(--c-bg);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            width: 100%;
            position: relative;
        }

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

        /* Scrollbar */
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: var(--c-bg); }
        ::-webkit-scrollbar-thumb { background: var(--c-primary); border-radius: 5px; }

        /* Yleiset typografia luokat */
        .font-serif { font-family: var(--font-serif); }
        .font-sans { font-family: var(--font-sans); }
        .font-light { font-weight: 300; }
        .font-medium { font-weight: 500; }
        .font-bold { font-weight: 700; }
        
        .text-xs { font-size: 0.75rem; line-height: 1rem; }
        .text-sm { font-size: 0.875rem; line-height: 1.25rem; }
        .text-base { font-size: 1rem; line-height: 1.5rem; }
        .text-lg { font-size: 1.125rem; line-height: 1.75rem; }
        .text-xl { font-size: 1.25rem; line-height: 1.75rem; }
        .text-2xl { font-size: 1.5rem; line-height: 2rem; }
        .text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
        .text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
        .text-5xl { font-size: 3rem; line-height: 1; }
        
        @media(min-width: 640px) {
            .sm-text-sm { font-size: 0.875rem; }
            .sm-text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
        }
        @media(min-width: 768px) {
            .md-text-5xl { font-size: 3rem; line-height: 1; }
            .md-text-6xl { font-size: 3.75rem; line-height: 1; }
        }
        @media(min-width: 1024px) {
            .lg-text-7xl { font-size: 4.5rem; line-height: 1; }
        }

        .leading-tight { line-height: 1.25; }
        .leading-relaxed { line-height: 1.625; }
        .tracking-wider { letter-spacing: 0.05em; }
        .tracking-widest { letter-spacing: 0.1em; }
        .uppercase { text-transform: uppercase; }
        .italic { font-style: italic; }
        .text-center { text-align: center; }
        
        .text-kanta-dark { color: var(--c-dark); }
        .text-kanta-primary { color: var(--c-primary); }
        .text-kanta-light { color: var(--c-light); }
        .text-white { color: white; }
        .text-gray-600 { color: var(--c-gray-600); }
        .text-gray-700 { color: var(--c-gray-700); }
        .text-gray-800 { color: var(--c-gray-800); }
        
        .text-gradient {
            background: linear-gradient(135deg, var(--c-dark), var(--c-primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Ulkoasun apuluokat */
        .container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; width: 100%; }
        .container-lg { max-width: 85rem; margin: 0 auto; padding: 0 1rem; width: 100%; }
        .container-md { max-width: 72rem; margin: 0 auto; padding: 0 1rem; width: 100%; }
        @media (min-width: 640px) { 
            .container, .container-lg, .container-md { padding: 0 1.5rem; } 
        }
        @media (min-width: 1024px) { 
            .container, .container-lg, .container-md { padding: 0 2rem; } 
        }

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

        /* Animaatiot ja efektit */
        .glass {
            background: rgba(253, 251, 249, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(197, 99, 34, 0.15);
        }
        .glass-dark {
            background: rgba(128, 50, 18, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .reveal-delay-1 { transition-delay: 0.1s; }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: .5; }
        }
        .animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
        @keyframes bounce {
            0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
            50% { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
        }
        .animate-bounce { animation: bounce 1s infinite; }
        @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        .animate-spin { animation: spin 1s linear infinite; }

        /* --- Top Bar --- */
        .top-bar {
            position: fixed; top: 0; width: 100%; z-index: 50; height: 2.5rem;
            background-color: var(--c-primary); color: white;
            transition: transform 0.5s ease-in-out; display: flex; align-items: center;
            box-shadow: var(--shadow-sm);
        }
        .top-bar.hidden-up { transform: translateY(-100%); }
        .top-bar-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .top-bar-left { display: none; align-items: center; gap: 0.5rem; font-weight: 500; }
        @media(min-width: 768px) { .top-bar-left { display: flex; } }
        .top-bar-right { display: flex; gap: 1rem; width: 100%; justify-content: center; font-weight: 500; }
        @media(min-width: 640px) { .top-bar-right { gap: 1.5rem; } }
        @media(min-width: 768px) { .top-bar-right { width: auto; justify-content: flex-end; } }
        .top-bar a { display: flex; align-items: center; gap: 0.25rem; transition: color 0.3s; text-decoration: none; color: inherit; }
        .top-bar a:hover { color: var(--c-dark); }
        .top-bar-icon { color: rgba(255,255,255,0.8); font-size: 1.125rem; }

        /* --- Navbar --- */
        .navbar { position: fixed; width: 100%; z-index: 40; top: 0; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
        .nav-initial {
            padding-top: 3.5rem; padding-bottom: 1.5rem;
            background: rgba(253, 251, 249, 0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(128, 50, 18, 0.1);
        }
        .nav-scrolled {
            padding-top: 0.75rem !important; padding-bottom: 0.75rem !important;
            background: rgba(253, 251, 249, 0.96) !important; backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important;
            border-bottom-left-radius: 2rem; border-bottom-right-radius: 2rem;
            box-shadow: var(--shadow-glass); border-bottom: 1px solid rgba(197, 99, 34, 0.2);
        }
        .nav-inner { height: 100%; display: flex; align-items: center; }
        
        .nav-desktop { display: none; justify-content: space-between; align-items: center; width: 100%; height: 100%; }
        @media(min-width: 768px) { .nav-desktop { display: flex; } }
        .nav-links-left { flex: 1; display: flex; justify-content: flex-end; gap: 2rem; align-items: center; padding-right: 3rem; }
        .nav-links-right { flex: 1; display: flex; justify-content: flex-start; gap: 2rem; align-items: center; padding-left: 3rem; }
        
        .nav-logo-container { flex-shrink: 0; display: flex; align-items: center; justify-content: center; transform-origin: top; transition: transform 0.5s; }
        .nav-logo-container img { height: 5rem; width: auto; transition: all 0.5s; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.05)); }
        .nav-scrolled .nav-logo-container img { height: 3rem; }
        
        .nav-link {
            position: relative; color: var(--c-dark); font-weight: 500; letter-spacing: 0.05em; font-size: 0.875rem; text-transform: uppercase; transition: color 0.3s ease; text-decoration: none;
        }
        .nav-link:hover { color: var(--c-primary); }
        .nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background-color: var(--c-primary); transition: width 0.3s ease; }
        .nav-link:hover::after { width: 100%; }
        
        .btn-nav-book {
            background: var(--c-primary); color: white; padding: 0.625rem 1.5rem; border-radius: 9999px; font-weight: 500; transition: all 0.3s; text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.875rem; text-decoration: none; margin-left: 1rem; box-shadow: var(--shadow-md); display: inline-block;
        }
        .btn-nav-book:hover { background: var(--c-dark); transform: translateY(-2px); box-shadow: var(--shadow-xl); }

        /* Mobile Nav */
        .nav-mobile { display: flex; justify-content: space-between; align-items: center; width: 100%; position: relative; }
        @media(min-width: 768px) { .nav-mobile { display: none; } }
        .mobile-logo-wrap { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; }
        .mobile-logo-wrap img { height: 3rem; width: auto; transition: all 0.5s; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.05)); }
        .nav-scrolled .mobile-logo-wrap img { height: 2.5rem; }
        
        .hamburger-btn { width: 30px; height: 20px; position: relative; cursor: pointer; z-index: 50; }
        .hamburger-btn span { display: block; position: absolute; height: 2px; width: 100%; background: var(--c-dark); border-radius: 2px; opacity: 1; left: 0; transform: rotate(0deg); transition: .3s ease-in-out; }
        .hamburger-btn span:nth-child(1) { top: 0px; }
        .hamburger-btn span:nth-child(2) { top: 9px; }
        .hamburger-btn span:nth-child(3) { top: 18px; }
        .hamburger-btn.open span:nth-child(1) { top: 9px; transform: rotate(135deg); }
        .hamburger-btn.open span:nth-child(2) { opacity: 0; left: -10px; }
        .hamburger-btn.open span:nth-child(3) { top: 9px; transform: rotate(-135deg); }
        
        .mobile-book-icon { color: var(--c-primary); background: rgba(197, 99, 34, 0.1); padding: 0.5rem; border-radius: 9999px; transition: all 0.3s; display: flex; text-decoration: none; }
        .mobile-book-icon:hover { background: var(--c-primary); color: white; }
        .mobile-book-icon i { font-size: 1.5rem; }
        
        .mobile-menu {
            position: absolute; width: 100%; left: 0; top: 100%; box-shadow: var(--shadow-2xl); border-bottom-left-radius: 2rem; border-bottom-right-radius: 2rem; overflow: hidden;
            transform-origin: top; transform: scaleY(0); opacity: 0; visibility: hidden; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.4s;
        }
        @media(min-width: 768px) { .mobile-menu { display: none; } }
        .mobile-menu.menu-open { transform: scaleY(1); opacity: 1; visibility: visible; }
        .mobile-menu-inner { padding: 1rem 1.5rem 2rem 1.5rem; display: flex; flex-direction: column; text-align: center; gap: 0.5rem; }
        .mobile-menu-link {
            color: white; padding: 0.75rem; font-size: 1.125rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.1); text-decoration: none; transition: color 0.3s;
        }
        .mobile-menu-link:hover { color: var(--c-light); }
        .mobile-menu-btn {
            background: var(--c-light); color: var(--c-dark); display: block; padding: 1rem; border-radius: 9999px; font-size: 1.125rem; font-weight: 700; margin-top: 1.5rem; box-shadow: var(--shadow-lg); text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none; transition: background 0.3s;
        }
        .mobile-menu-btn:hover { background: white; }

        /* --- Main / Hero --- */
        .hero-section {
            position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 8rem; overflow: hidden; background-color: var(--c-dark);
        }
        .video-container { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; }
        .hero-video {
            position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; object-fit: cover; transform: translate(-50%, -50%); opacity: 0; transition: opacity 1.5s ease-in-out; z-index: 1;
        }
        .hero-video.active { opacity: 1; z-index: 2; }
        .video-overlay {
            position: absolute; inset: 0; background: linear-gradient(to right, rgba(253, 251, 249, 0.95) 0%, rgba(253, 251, 249, 0.7) 50%, rgba(253, 251, 249, 0.4) 100%); z-index: 10;
        }
        .hero-content { position: relative; z-index: 20; width: 100%; }
        .hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
        @media(min-width: 1024px) { .hero-grid { grid-template-columns: repeat(2, 1fr); } }
        
        .hero-desc { font-size: 1.125rem; color: var(--c-gray-700); margin-bottom: 2.5rem; max-width: 32rem; font-weight: 300; line-height: 1.625; }
        @media(min-width: 768px) { .hero-desc { font-size: 1.25rem; } }
        
        .hero-buttons { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
        @media(min-width: 640px) { .hero-buttons { flex-direction: row; } }
        
        .btn-primary {
            background: var(--c-dark); color: white; padding: 1rem 2rem; border-radius: 9999px; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.3s; text-decoration: none; border: 1px solid var(--c-dark); box-shadow: var(--shadow-glass); text-align: center; width: 100%;
        }
        @media(min-width: 640px) { .btn-primary { width: auto; } }
        .btn-primary:hover { background: var(--c-primary); box-shadow: var(--shadow-xl); transform: translateY(-4px); }
        .btn-primary i { transition: transform 0.3s; font-size: 1.25rem; }
        .btn-primary.group:hover i { transform: rotate(12deg); }
        
        .btn-secondary {
            background: white; color: var(--c-dark); padding: 1rem 2rem; border-radius: 9999px; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.3s; text-decoration: none; border: 2px solid var(--c-dark); text-align: center; width: 100%;
        }
        @media(min-width: 640px) { .btn-secondary { width: auto; } }
        .btn-secondary:hover { background: var(--c-bg); transform: translateY(-4px); }
        .btn-secondary i { transition: transform 0.3s; font-size: 1.25rem; }
        .btn-secondary.group:hover i { animation: spin 1s linear infinite; }

        .hero-scroll-btn { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 20; color: var(--c-dark); opacity: 0.5; transition: opacity 0.3s; text-decoration: none; }
        .hero-scroll-btn:hover { opacity: 1; }
        .hero-scroll-btn i { font-size: 1.875rem; }

        /* --- Esittely --- */
        .intro-section { padding: 6rem 0; background: white; position: relative; overflow: hidden; }
        .intro-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
        @media(min-width: 1024px) { .intro-grid { grid-template-columns: repeat(2, 1fr); } }
        
        .intro-img-col { order: 2; position: relative; }
        @media(min-width: 1024px) { .intro-img-col { order: 1; } .intro-text-col { order: 2; } }
        .intro-img-bg { position: absolute; inset: -1rem; background: rgba(197, 99, 34, 0.1); border-radius: 3rem; transform: rotate(-3deg); z-index: 0; }
        .intro-img-wrap { position: relative; z-index: 10; border-radius: 2.5rem; overflow: hidden; box-shadow: var(--shadow-2xl); aspect-ratio: 4/3; background: var(--c-bg); border: 4px solid white; }
        .intro-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
        
        @keyframes fadeImg { 0%, 40% { opacity: 1; } 50%, 90% { opacity: 0; } 100% { opacity: 1; } }
        .fade-img-layer { animation: fadeImg 12s infinite ease-in-out; }
        
        .location-card {
            display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border-radius: 1.5rem; background: rgba(197, 99, 34, 0.05); border: 1px solid rgba(197, 99, 34, 0.1); transition: background 0.3s; margin-bottom: 1.25rem;
        }
        .location-card:hover { background: rgba(197, 99, 34, 0.1); }
        .location-icon { background: white; box-shadow: var(--shadow-sm); padding: 0.75rem; border-radius: 9999px; color: var(--c-primary); flex-shrink: 0; margin-top: 0.25rem; }
        .location-icon i { font-size: 1.5rem; }

        /* --- Palvelut --- */
        .services-section { padding: 6rem 0; background: var(--c-bg); position: relative; overflow: hidden; }
        .services-bg-blur { position: absolute; top: 0; right: 0; width: 800px; height: 800px; background: rgba(197, 99, 34, 0.05); border-radius: 50%; filter: blur(3rem); transform: translate(33.3%, -33.3%); }
        .services-header { text-align: center; max-width: 48rem; margin: 0 auto 4rem auto; position: relative; z-index: 10; }
        
        .services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: stretch; position: relative; z-index: 10; }
        @media(min-width: 1024px) { 
            .services-grid { grid-template-columns: repeat(5, 1fr); } 
            .services-col-3 { grid-column: span 3; }
            .services-col-2 { grid-column: span 2; }
        }
        
        .service-main-card { padding: 2rem; border-radius: 2rem; box-shadow: var(--shadow-2xl); position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
        @media(min-width: 768px) { .service-main-card { padding: 2.5rem; } }
        .service-main-icon { position: absolute; right: 0; top: 0; opacity: 0.1; color: white; transform: translate(25%, -25%); font-size: 16rem; }
        .service-main-content { position: relative; z-index: 10; }
        
        .service-list-card { padding: 2rem; border-radius: 2rem; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; justify-content: center; background-color: rgba(255,255,255,0.4); }
        @media(min-width: 768px) { .service-list-card { padding: 2.5rem; } }
        .service-ul { display: grid; grid-template-columns: 1fr; gap: 1rem 1.5rem; list-style: none; }
        @media(min-width: 640px) { .service-ul { grid-template-columns: repeat(2, 1fr); } }
        @media(min-width: 1024px) { .service-ul { grid-template-columns: 1fr; } }
        .service-li { display: flex; align-items: center; gap: 0.75rem; color: var(--c-gray-800); font-weight: 500; transition: color 0.3s; cursor: default; }
        .service-li:hover { color: var(--c-primary); }
        .service-li i { color: var(--c-primary); font-size: 1.25rem; }

        /* --- Tiimi --- */
        .team-section { padding: 6rem 0; background: white; }
        .team-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
        @media(min-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
        
        .team-card {
            display: flex; flex-direction: column; border-radius: 2rem; overflow: hidden; box-shadow: var(--shadow-soft);
            transition: all 0.5s; border: 1px solid var(--c-gray-100); background-color: rgba(255,255,255,0.7);
        }
        @media(min-width: 640px) { .team-card { flex-direction: row; } }
        .team-card:hover { transform: translateY(-0.25rem); box-shadow: var(--shadow-xl); border-color: rgba(197, 99, 34, 0.3); }
        
        .team-img-wrap { position: relative; overflow: hidden; flex-shrink: 0; aspect-ratio: 4/3; width: 100%; }
        @media(min-width: 640px) { .team-img-wrap { width: 40%; aspect-ratio: auto; } }
        .team-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.7s; }
        .team-card:hover .team-img-wrap img { transform: scale(1.05); }
        
        .team-content { padding: 1.5rem; display: flex; flex-direction: column; justify-content: center; position: relative; width: 100%; }
        @media(min-width: 640px) { .team-content { padding: 2rem; width: 60%; } }
        .team-quote-icon { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 3.75rem; color: rgba(197, 99, 34, 0.05); transform: rotate(12deg); transition: transform 0.5s; }
        .team-card:hover .team-quote-icon { transform: scale(1.1) rotate(12deg); }
        .team-content-inner { position: relative; z-index: 10; }

        .team-highlight-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
        @media(min-width: 1024px) { .team-highlight-grid { grid-template-columns: repeat(2, 1fr); } }
        .team-highlight-card {
            padding: 1.5rem; border-radius: 2rem; display: flex; flex-direction: column; gap: 1.5rem; align-items: center; 
            border-left: 4px solid var(--c-primary); box-shadow: var(--shadow-soft); transition: box-shadow 0.3s; background: rgba(255,255,255,0.6);
        }
        @media(min-width: 640px) { .team-highlight-card { flex-direction: row; align-items: flex-start; padding: 2rem; } }
        .team-highlight-card:hover { box-shadow: var(--shadow-md); }
        .team-highlight-img { width: 6rem; height: 6rem; flex-shrink: 0; border-radius: 9999px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid white; }
        @media(min-width: 640px) { .team-highlight-img { width: 7rem; height: 7rem; } }
        .team-highlight-img img { width: 100%; height: 100%; object-fit: cover; }

        /* --- Hinnasto --- */
        .pricing-section { padding: 6rem 0; background: var(--c-dark); color: white; position: relative; }
        .pricing-card { padding: 1.5rem; border-radius: 2.5rem; box-shadow: var(--shadow-2xl); }
        @media(min-width: 768px) { .pricing-card { padding: 2.5rem; } }
        
        .pricing-grid { display: grid; grid-template-columns: 1fr; gap: 0.5rem; column-gap: 3rem; }
        @media(min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); column-gap: 4rem; } }
        
        .pricing-item { padding: 1rem; display: flex; flex-direction: column; justify-content: center; border-radius: 1rem; transition: background 0.3s; border-bottom: 1px solid rgba(255,255,255,0.05); height: 100%; cursor: default; }
        .pricing-item:hover { background: rgba(255,255,255,0.05); }
        .pricing-item-inner { display: flex; justify-content: space-between; align-items: flex-start; width: 100%; gap: 1rem; }
        .pricing-item-text { display: flex; flex-direction: column; }
        .pricing-item-title { font-weight: 600; color: rgba(255,255,255,0.95); transition: transform 0.3s, color 0.3s; }
        .pricing-item:hover .pricing-item-title { color: white; transform: translateX(0.25rem); }
        .pricing-item-desc { color: rgba(255,255,255,0.6); font-size: 0.875rem; font-style: italic; margin-top: 0.25rem; transition: transform 0.3s; }
        .pricing-item:hover .pricing-item-desc { transform: translateX(0.25rem); }
        .pricing-item-price { color: white; font-family: var(--font-sans); font-size: 1.25rem; font-weight: 700; letter-spacing: 0.025em; filter: drop-shadow(0 4px 3px rgba(0,0,0,0.07)); white-space: nowrap; text-align: right; }
        
        .pricing-special {
            margin-top: 2.5rem; padding: 2rem; border-radius: 1.5rem; position: relative; overflow: hidden; 
            background: linear-gradient(to bottom right, rgba(226, 154, 107, 0.05), transparent); 
            border: 1px solid rgba(226, 154, 107, 0.2); box-shadow: var(--shadow-glow); transition: border-color 0.5s; cursor: default;
        }
        .pricing-special:hover { border-color: rgba(226, 154, 107, 0.4); }
        .pricing-special-icon { position: absolute; right: -1.5rem; top: -1.5rem; color: rgba(226, 154, 107, 0.1); transition: color 0.5s; transform: rotate(12deg); }
        .pricing-special:hover .pricing-special-icon { color: rgba(226, 154, 107, 0.2); }
        .pricing-special-icon i { font-size: 12rem; }
        
        /* Skeleton loading */
        .skeleton-flex { display: flex; justify-content: space-between; align-items: flex-start; width: 100%; gap: 1rem; }
        .skeleton-bar-1 { height: 1rem; background: rgba(255,255,255,0.2); border-radius: 0.25rem; width: 33.333%; margin-top: 0.5rem; }
        .skeleton-bar-2 { height: 1.5rem; background: rgba(255,255,255,0.2); border-radius: 0.25rem; width: 25%; }

        /* --- Yhteystiedot --- */
        .contact-section { padding: 6rem 0; background: var(--c-bg); }
        .contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
        @media(min-width: 768px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
        
        .contact-card { padding: 2rem; border-radius: 2.5rem; position: relative; overflow: hidden; box-shadow: var(--shadow-soft); }
        @media(min-width: 768px) { .contact-card { padding: 2.5rem; } }
        .contact-card-bg { position: absolute; top: 0; right: 0; width: 8rem; height: 8rem; background: rgba(197, 99, 34, 0.1); border-bottom-left-radius: 9999px; z-index: -1; }
        
        .contact-info-wrap p { margin-bottom: 1rem; color: var(--c-gray-700); }
        .contact-link { font-weight: 500; color: inherit; text-decoration: none; transition: color 0.3s; }
        .contact-link:hover { color: var(--c-primary); }
        
        .contact-hours { background: rgba(255,255,255,0.6); padding: 1.5rem; border-radius: 1rem; border: 1px solid white; margin-top: 2rem; }
        .hours-list { font-size: 0.875rem; color: var(--c-gray-600); list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
        .hours-item { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; }
        .hours-item-border { border-top: 1px solid rgba(229, 231, 235, 0.6); }
        .hours-time { font-weight: 600; }

        /* --- Footer --- */
        .footer { background: var(--c-dark); color: white; padding-top: 4rem; padding-bottom: 2rem; border-top: 4px solid var(--c-light); }
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
        @media(min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
        @media(min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
        
        .footer-logo { height: 4rem; margin-bottom: 1.5rem; filter: brightness(0) invert(1) opacity(0.9); }
        .footer-link { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
        .footer-link:hover { color: var(--c-light); }
        
        .footer-btn { display: block; width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); text-align: center; padding: 0.75rem; border-radius: 0.75rem; transition: background 0.3s; text-decoration: none; color: white; font-size: 0.875rem; margin-bottom: 0.75rem; }
        .footer-btn:hover { background: rgba(255,255,255,0.2); }
        
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: space-between; font-size: 0.875rem; color: rgba(255,255,255,0.4); gap: 0.5rem; }
        @media(min-width: 768px) { .footer-bottom { flex-direction: row; gap: 0; } }