        :root {
            --primary: #5b6d5b; /* Dämpad grön, likt esster.fi */
            --primary-dark: #2a382a; /* Mörkare grön för hero-rubrik */
            --secondary: #f9f7f2; /* Ljus beige bakgrund */
            --text: #333;
            --accent: #d4a373; /* Mjuk sandfärg för knappar */
        }

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

        html, body {
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--secondary);
        }

        h1, h2, h3 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
        }

        /* Navigation */
        nav {
            background: white;
            padding: 1.5rem 10%;
            padding-left: max(10%, env(safe-area-inset-left));
            padding-right: max(10%, env(safe-area-inset-right));
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; }

        .nav-links {
            display: flex;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            margin-left: 2rem;
            font-weight: 400;
            transition: color 0.3s;
        }

        .nav-links a:hover { color: var(--primary); }

        .nav-links .nav-btn {
            color: white;
            margin-left: 2rem;
            padding: 0.6rem 1.25rem;
            font-size: 0.9rem;
            animation: nav-btn-pulse 2s ease-in-out infinite;
        }
        .nav-links .nav-btn:hover { color: white; }

        .nav-dropdown {
            position: relative;
            display: inline-block;
        }

        .nav-dropdown-trigger { margin-left: 2rem; }

        .nav-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 0.25rem;
            min-width: 220px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            padding: 0.5rem 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s, visibility 0.2s;
            z-index: 1001;
        }

        .nav-dropdown:hover .nav-dropdown-menu {
            opacity: 1;
            visibility: visible;
        }

        .nav-dropdown-menu a {
            display: block;
            margin-left: 0;
            padding: 0.6rem 1.25rem;
            white-space: nowrap;
        }

        .nav-dropdown-menu a:hover {
            background: var(--secondary);
        }

        @keyframes nav-btn-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.06); }
        }

        .nav-social {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-left: 1.5rem;
        }

        .nav-social a {
            margin-left: 0;
            display: inline-flex;
            color: var(--primary);
            transition: color 0.3s, opacity 0.3s;
        }

        .nav-social a:hover {
            color: var(--primary);
            opacity: 0.85;
        }

        .nav-icon {
            display: block;
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 100px 10%;
            display: flex;
            align-items: center;
            min-height: 80vh;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('header.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.7;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
        }

        .hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; line-height: 1.2; color: var(--primary-dark); }

        .hero p { font-size: 1.35rem; margin-bottom: 2rem; color: var(--primary-dark); font-weight: 600; }

        .btn {
            background-color: var(--primary);
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .btn:hover { transform: translateY(-3px); opacity: 0.9; }

        /* Sections */
        section { padding: 80px 10%; }

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

        .card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }

        .card h3 { margin-bottom: 1rem; }
        .card p a { color: var(--primary); text-decoration: none; }
        .card p a:hover { text-decoration: underline; opacity: 0.9; }
        a.card-link {
            display: block;
            text-decoration: none;
            color: inherit;
            cursor: pointer;
            transition: box-shadow 0.2s ease, transform 0.2s ease;
        }
        a.card-link:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.08);
            transform: translateY(-2px);
        }
        .card-read-more { color: var(--primary); }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 40px 10%;
            text-align: center;
        }

        /* Contact modal */
        .contact-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .contact-modal-overlay.is-open { display: flex; }
        .contact-modal {
            background: white;
            border-radius: 12px;
            max-width: 440px;
            width: 100%;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            position: relative;
        }
        .contact-modal h3 { margin-bottom: 1.25rem; }
        .contact-modal .form-group {
            margin-bottom: 1rem;
        }
        .contact-modal label {
            display: block;
            margin-bottom: 0.35rem;
            font-weight: 500;
        }
        .contact-modal input,
        .contact-modal textarea {
            width: 100%;
            padding: 0.6rem 0.75rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
        }
        .contact-modal textarea { min-height: 100px; resize: vertical; }
        .contact-modal .optional { font-weight: 400; color: #777; font-size: 0.9rem; }
        .contact-modal .btn-submit {
            margin-top: 0.5rem;
            cursor: pointer;
            border: none;
        }
        .contact-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
            line-height: 1;
        }
        .contact-modal-close:hover { color: #333; }
        .contact-thank-you { display: none; }
        .contact-thank-you.is-visible { display: block; }

        /* Mobile menu backdrop - hidden on desktop */
        .nav-backdrop { display: none; }

        /* Hamburger button - hidden on desktop */
        .nav-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            padding: 0;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--primary);
        }
        .nav-toggle svg { display: block; }

        @media (max-width: 768px) {
            /* Nav: hamburger + drawer menu */
            .nav-toggle { display: flex; }
            nav { padding: 1rem 5%; padding-left: max(1rem, env(safe-area-inset-left)); padding-right: max(1rem, env(safe-area-inset-right)); }
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                width: min(280px, 85vw);
                height: 100vh;
                flex-direction: column;
                align-items: stretch;
                padding: 5rem 1.5rem 2rem;
                margin: 0;
                background: white;
                box-shadow: -4px 0 24px rgba(0,0,0,0.12);
                transform: translateX(100%);
                visibility: hidden;
                transition: transform 0.3s ease, visibility 0s 0.3s;
                overflow-y: auto;
                z-index: 999;
            }
            nav.menu-open .nav-links { transform: translateX(0); visibility: visible; transition: transform 0.3s ease, visibility 0s; }
            .nav-links a {
                margin-left: 0;
                margin-bottom: 0.5rem;
                padding: 0.75rem 0;
                font-size: 1.05rem;
                border-bottom: 1px solid rgba(0,0,0,0.06);
            }
            .nav-links .nav-btn {
                margin-left: 0;
                margin-top: 0.5rem;
                margin-bottom: 1rem;
                text-align: center;
            }
            .nav-dropdown-trigger { margin-left: 0; }
            .nav-dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                padding: 0 0 0.5rem 1rem;
                margin-bottom: 0.5rem;
                min-width: 0;
                border-left: 3px solid var(--primary);
            }
            .nav-dropdown-menu a {
                padding: 0.5rem 0;
                border-bottom: none;
            }
            .nav-social {
                margin-left: 0;
                margin-top: 1rem;
                padding-top: 1rem;
                border-top: 1px solid rgba(0,0,0,0.08);
                justify-content: flex-start;
                gap: 1rem;
            }
            /* Backdrop when menu open */
            .nav-backdrop {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0,0,0,0.4);
                z-index: 998;
            }
            nav.menu-open + .nav-backdrop,
            .nav-backdrop.is-visible { display: block; }

            /* Hero */
            .hero {
                padding: 60px 5%;
                min-height: 70vh;
            }
            .hero h1 { font-size: 2rem; line-height: 1.25; }
            .hero p { font-size: 1.1rem; }
            .hero .btn { padding: 0.85rem 1.75rem; font-size: 1rem; }

            /* Sections */
            section { padding: 50px 5%; }
            section h2 { font-size: 1.75rem; }
            section h3 { font-size: 1.35rem; }

            /* Services grid - stack on small screens */
            .services { grid-template-columns: 1fr; gap: 1.5rem; }
            .card { padding: 1.75rem; }

            /* Content max-width sections - reduce side padding on mobile */
            section div[style*="max-width: 800px"] {
                padding-left: 0;
                padding-right: 0;
            }

            /* Priser table - responsive */
            table { width: 100%; table-layout: fixed; }
            table td:first-child { white-space: normal; width: 60%; }
            table td:last-child { white-space: normal; text-align: right; padding-left: 0.5rem; width: 40%; }
            table tr { border-bottom: 1px solid rgba(0,0,0,0.08); }
            .contact-modal { margin: 1rem; max-height: calc(100vh - 2rem); overflow-y: auto; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 1.75rem; }
            .hero p { font-size: 1rem; }
        }

        /* Touch-friendly: ensure tap targets are at least 44px */
        @media (pointer: coarse) {
            .btn { min-height: 44px; min-width: 44px; display: inline-flex; align-items: center; justify-content: center; }
            .nav-links a { min-height: 44px; display: flex; align-items: center; }
        }
