
        /* === RÉGI SZÍNEK === */
        :root {
            --ivory: #F8F5F0;
            --charcoal: #1C1C1C;
            --clay: #A67C52;
            --sage: #8A9B6E;
            --parchment: #E8DFD5;
            --gold: #D4AF37;
            --shadow-soft: 0 4px 20px rgba(0,0,0,0.06);
            --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
            --shadow-strong: 0 15px 50px rgba(0,0,0,0.18);
            --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            --border-radius-soft: 6px;
            --border-radius-card: 12px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--charcoal);
            background-color: var(--ivory);
            line-height: 1.7;
            overflow-x: hidden;
            font-weight: 300;
        }
        
        h1, h2, h3, h4, .logo {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 500;
            letter-spacing: 0.3px;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
        section {
            padding: 100px 0;
            position: relative;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* === MODERN HEADER === */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 22px 0;
            background: rgba(248, 245, 240, 0.98);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(166, 124, 82, 0.1);
            transition: var(--transition-smooth);
        }
        
        header.scrolled {
            padding: 16px 0;
            box-shadow: var(--shadow-soft);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 18px;
            text-decoration: none;
            color: var(--charcoal);
            position: relative;
            padding-left: 18px;
        }
        
        .logo::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 52px;
            background: linear-gradient(to bottom, var(--clay), var(--sage));
            border-radius: 1.5px;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }
        
        .logo-name {
            font-size: 28px;
            font-weight: 600;
            letter-spacing: 0.8px;
            margin-bottom: 3px;
            color: var(--charcoal);
        }
        
        .logo-title {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 3.5px;
            color: var(--clay);
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
        }
        
        /* Modern Navigation */
        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
            margin: 0;
            padding: 0;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--charcoal);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
            position: relative;
            padding: 8px 0;
            overflow: hidden;
            transition: color 0.3s ease;
        }
        
        .nav-link span {
            position: relative;
            z-index: 2;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--clay);
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .nav-link:hover {
            color: var(--clay);
        }
        
        .nav-link:hover::after {
            transform: translateX(0);
        }
        
        .nav-number {
            font-size: 9px;
            color: var(--sage);
            margin-right: 6px;
            font-weight: 500;
        }
        
        /* Modern Button */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 32px;
            text-decoration: none;
            font-weight: 500;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: var(--transition-smooth);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-align: center;
            border-radius: 30px;
        }
        
        .btn-primary {
            background: var(--charcoal);
            color: var(--ivory);
            box-shadow: 0 4px 15px rgba(28, 28, 28, 0.15);
        }
        
        .btn-primary:hover {
            background: var(--clay);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(166, 124, 82, 0.25);
        }
        
        .btn-primary i {
            transition: transform 0.3s ease;
        }
        
        .btn-primary:hover i {
            transform: translateX(3px);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--charcoal);
            border: 2px solid var(--charcoal);
        }
        
        .btn-outline:hover {
            background: var(--charcoal);
            color: var(--ivory);
        }
        
        /* === MOBIL NAVIGÁCIÓ === */
        .mobile-menu-btn {
            display: none; /* Alapértelmezésben rejtve */
            background: none;
            border: none;
            font-size: 24px;
            color: var(--charcoal);
            cursor: pointer;
            z-index: 1001;
            transition: color 0.3s ease;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
        }
        
        .mobile-menu-btn:hover {
            color: var(--clay);
        }
        
        /* X gomb - alapértelmezésben rejtve */
        .nav-close-btn {
            display: none; /* Alapértelmezésben rejtve */
            position: absolute;
            top: 30px;
            right: 30px;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--charcoal);
            cursor: pointer;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
            z-index: 1001;
        }
        
        .nav-close-btn:hover {
            background: rgba(166, 124, 82, 0.1);
            color: var(--clay);
            transform: rotate(90deg);
        }
        
        /* Nav overlay háttér - alapértelmezésben rejtve */
        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(28, 28, 28, 0.8);
            backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .nav-overlay.active {
            display: block;
            opacity: 1;
        }
        
        /* === HERO SECTION === */
        .hero {
            height: 100vh;
            min-height: 800px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--ivory) 0%, #f0ebe1 100%);
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .hero-bg-left {
            position: absolute;
            left: 0;
            top: 0;
            width: 45%;
            height: 100%;
            background: linear-gradient(135deg, var(--parchment) 0%, #e0d6c8 100%);
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
        }
        
        .hero-bg-right {
            position: absolute;
            right: 0;
            top: 0;
            width: 65%;
            height: 100%;
            background-image: url('https://cdn.pixabay.com/photo/2019/03/08/20/17/beauty-salon-4043096_1280.jpg');
            background-size: cover;
            background-position: center 30%;
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
            opacity: 0.85;
            filter: sepia(0.15) contrast(1.1) brightness(1.05);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 550px;
            margin-left: 10%;
        }
        
        .hero-pre-title {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--clay);
            margin-bottom: 30px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .hero-pre-title::before {
            content: '';
            width: 50px;
            height: 1px;
            background: var(--clay);
        }
        
        .hero-title {
            font-size: clamp(52px, 6vw, 76px);
            font-weight: 400;
            margin-bottom: 40px;
            line-height: 1.05;
            color: var(--charcoal);
        }
        
        .hero-title-line {
            display: block;
            overflow: hidden;
        }
        
        .hero-title-word {
            display: inline-block;
            transform: translateY(100%);
            opacity: 0;
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.8s ease;
        }
        
        .hero-cta {
            margin-top: 50px;
        }
        
        /* === MODERN PHILOSOPHY SECTION === */
        .philosophy {
            background: var(--ivory);
            position: relative;
        }
        
        .philosophy::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(138, 155, 110, 0.03) 100%);
            z-index: -1;
        }
        
        .philosophy-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }
        
        .philosophy-image {
            position: relative;
        }
        
        .image-frame {
            width: 100%;
            height: 650px;
            background-image: url('https://cdn.pixabay.com/photo/2015/03/03/18/58/woman-657753_1280.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            border-radius: var(--border-radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-medium);
        }
        
        .image-frame::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(166, 124, 82, 0.1), rgba(138, 155, 110, 0.1));
            z-index: 1;
        }
        
        .image-frame::after {
            content: '';
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: var(--sage);
            border-radius: 50%;
            z-index: 2;
        }
        
        .philosophy-content {
            padding-right: 20px;
        }
        
        .section-label {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--clay);
            margin-bottom: 30px;
            display: block;
            font-weight: 500;
        }
        
        .section-title {
            font-size: clamp(40px, 4vw, 56px);
            font-weight: 400;
            margin-bottom: 40px;
            line-height: 1.1;
            color: var(--charcoal);
            position: relative;
            padding-bottom: 25px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 3px;
            background: linear-gradient(to right, var(--clay), var(--sage));
            border-radius: 1.5px;
        }
        
        .philosophy-text {
            font-size: 17px;
            color: rgba(28, 28, 28, 0.85);
            margin-bottom: 30px;
            line-height: 1.8;
            font-weight: 300;
        }
        
        .philosophy-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: var(--border-radius-soft);
            border: 1px solid rgba(166, 124, 82, 0.1);
            transition: var(--transition-smooth);
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            background: white;
            box-shadow: var(--shadow-soft);
            border-color: rgba(166, 124, 82, 0.2);
        }
        
        .feature-icon {
            width: 32px;
            height: 32px;
            background: var(--charcoal);
            color: var(--ivory);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
            transition: var(--transition-smooth);
        }
        
        .feature-item:hover .feature-icon {
            background: var(--clay);
            transform: rotate(10deg);
        }
        
        .feature-text h4 {
            font-size: 18px;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--charcoal);
            font-family: 'Cormorant Garamond', serif;
        }
        
        .feature-text p {
            font-size: 14px;
            color: rgba(28, 28, 28, 0.7);
            line-height: 1.6;
        }
        
        /* === MODERN SERVICES SECTION === */
        .services {
            background: var(--charcoal);
            color: var(--ivory);
            position: relative;
        }
        
        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(166, 124, 82, 0.05), rgba(138, 155, 110, 0.05));
            z-index: 0;
        }
        
        .services-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 1;
        }
        
        .services-title {
            font-size: clamp(44px, 5vw, 60px);
            font-weight: 400;
            margin-bottom: 25px;
            color: var(--ivory);
        }
        
        .services-subtitle {
            font-size: 18px;
            color: rgba(248, 245, 240, 0.8);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 50px;
            position: relative;
            z-index: 1;
        }
        
        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius-card);
            transition: var(--transition-smooth);
        }
        
        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(166, 124, 82, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--clay), var(--sage));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-number {
            font-size: 14px;
            color: var(--clay);
            margin-bottom: 25px;
            font-weight: 500;
            letter-spacing: 2px;
            display: inline-block;
            padding: 6px 12px;
            background: rgba(166, 124, 82, 0.1);
            border-radius: 20px;
        }
        
        .service-card-title {
            font-size: 28px;
            margin-bottom: 25px;
            font-weight: 500;
            color: var(--ivory);
        }
        
        .service-card-desc {
            font-size: 16px;
            color: rgba(248, 245, 240, 0.8);
            margin-bottom: 30px;
            line-height: 1.7;
        }
        
        .service-price {
            font-size: 24px;
            color: var(--sage);
            margin-bottom: 35px;
            font-weight: 500;
        }
        
        .service-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 35px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .service-duration {
            font-size: 14px;
            color: rgba(248, 245, 240, 0.7);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-small {
            padding: 14px 28px;
            font-size: 12px;
            background: var(--clay);
            color: white;
            border-radius: 30px;
            transition: var(--transition-smooth);
        }
        
        .btn-small:hover {
            background: var(--ivory);
            color: var(--charcoal);
            transform: translateY(-2px);
        }
        
        /* További szolgáltatások link */
        .more-services {
            text-align: center;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }
        
        .more-services-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--sage);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 15px 30px;
            border: 2px solid rgba(138, 155, 110, 0.3);
            border-radius: 30px;
            transition: var(--transition-smooth);
        }
        
        .more-services-link:hover {
            color: var(--ivory);
            background: var(--sage);
            border-color: var(--sage);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(138, 155, 110, 0.2);
        }
        
        /* === MODERN PORTFOLIO SECTION === */
        .portfolio {
            background: var(--ivory);
            position: relative;
        }
        
        .portfolio::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(232, 223, 213, 0.3) 0%, transparent 100%);
            z-index: -1;
        }
        
        .portfolio-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .portfolio-title {
            font-size: clamp(44px, 5vw, 60px);
            font-weight: 400;
            margin-bottom: 20px;
            color: var(--charcoal);
        }
        
        .portfolio-subtitle {
            font-size: 18px;
            color: rgba(28, 28, 28, 0.8);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
            line-height: 1.6;
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .portfolio-item {
            height: 450px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-radius: var(--border-radius-card);
            box-shadow: var(--shadow-soft);
            transition: var(--transition-smooth);
        }
        
        .portfolio-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
        }
        
        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .portfolio-item:hover img {
            transform: scale(1.05);
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px;
            background: linear-gradient(to top, rgba(28, 28, 28, 0.95) 0%, transparent 100%);
            color: white;
            transform: translateY(20px);
            opacity: 0;
            transition: var(--transition-smooth);
            border-radius: 0 0 var(--border-radius-card) var(--border-radius-card);
        }
        
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        
        .portfolio-category {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--sage);
            margin-bottom: 12px;
            font-weight: 500;
        }
        
        .portfolio-item-title {
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .portfolio-instagram {
            text-align: center;
            margin-top: 80px;
        }
        
        .btn-instagram {
            background: transparent;
            color: var(--charcoal);
            border: 2px solid var(--charcoal);
            padding: 18px 45px;
            position: relative;
            overflow: hidden;
            border-radius: 30px;
            transition: var(--transition-smooth);
        }
        
        .btn-instagram:hover {
            color: var(--ivory);
            background: var(--charcoal);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(28, 28, 28, 0.2);
        }
        
        /* === MODERN CONTACT SECTION === */
        .contact {
            background: linear-gradient(135deg, var(--parchment) 0%, #e0d6c8 100%);
            position: relative;
            overflow: hidden;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23a67c52' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
            z-index: 0;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            position: relative;
            z-index: 1;
        }
        
        .contact-info {
            padding-right: 20px;
        }
        
        .contact-title {
            font-size: clamp(40px, 4vw, 56px);
            font-weight: 400;
            margin-bottom: 40px;
            color: var(--charcoal);
            position: relative;
            padding-bottom: 25px;
        }
        
        .contact-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 3px;
            background: linear-gradient(to right, var(--clay), var(--sage));
            border-radius: 1.5px;
        }
        
        .contact-details {
            margin-bottom: 60px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            margin-bottom: 35px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: var(--border-radius-soft);
            border: 1px solid rgba(166, 124, 82, 0.1);
            transition: var(--transition-smooth);
        }
        
        .contact-item:hover {
            background: white;
            transform: translateX(5px);
            box-shadow: var(--shadow-soft);
        }
        
        .contact-icon {
            width: 55px;
            height: 55px;
            background: var(--charcoal);
            color: var(--ivory);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            transition: var(--transition-smooth);
        }
        
        .contact-item:hover .contact-icon {
            background: var(--clay);
            transform: rotate(15deg) scale(1.1);
        }
        
        .contact-text h4 {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--charcoal);
        }
        
        .contact-text p {
            font-size: 17px;
            color: rgba(28, 28, 28, 0.8);
            line-height: 1.6;
        }
        
        .contact-actions {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 50px;
        }
        
        .btn-block {
            width: 100%;
            justify-content: center;
        }
        
        .hours-card {
            background: var(--ivory);
            padding: 50px 40px;
            border-radius: var(--border-radius-card);
            border: 1px solid rgba(166, 124, 82, 0.1);
            box-shadow: var(--shadow-soft);
        }
        
        .hours-title {
            font-size: 24px;
            margin-bottom: 40px;
            font-weight: 500;
            color: var(--charcoal);
            text-align: center;
            position: relative;
            padding-bottom: 20px;
        }
        
        .hours-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--clay), var(--sage));
            border-radius: 1.5px;
        }
        
        .hours-list {
            list-style: none;
        }
        
        .hours-item {
            display: flex;
            justify-content: space-between;
            padding: 20px 0;
            border-bottom: 1px solid rgba(166, 124, 82, 0.1);
            transition: var(--transition-smooth);
        }
        
        .hours-item:hover {
            background: rgba(166, 124, 82, 0.05);
            padding: 20px 15px;
            border-radius: var(--border-radius-soft);
        }
        
        .hours-item:last-child {
            border-bottom: none;
        }
        
        /* === MODERN FOOTER === */
        footer {
            background: var(--charcoal);
            color: var(--ivory);
            padding: 100px 0 50px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(166, 124, 82, 0.05), rgba(138, 155, 110, 0.05));
            z-index: 0;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 80px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }
        
        .footer-logo .logo-name {
            color: var(--ivory);
        }
        
        .footer-logo .logo-title {
            color: var(--sage);
        }
        
        .footer-logo p {
            color: rgba(248, 245, 240, 0.8);
            margin-top: 25px;
            line-height: 1.7;
            font-size: 16px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: var(--ivory);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition-smooth);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .social-link:hover {
            background: var(--clay);
            transform: translateY(-5px) rotate(10deg);
            border-color: var(--clay);
            box-shadow: 0 10px 20px rgba(166, 124, 82, 0.3);
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 35px;
            font-weight: 500;
            color: var(--ivory);
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--sage);
            border-radius: 1.5px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 18px;
        }
        
        .footer-links a {
            color: rgba(248, 245, 240, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
            position: relative;
            padding-left: 0;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--sage);
            padding-left: 10px;
        }
        
        .footer-links a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.3s ease;
            color: var(--sage);
        }
        
        .footer-links a:hover::before {
            left: 0;
            opacity: 1;
        }
        
        .footer-contact p {
            color: rgba(248, 245, 240, 0.8);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 16px;
        }
        
        .footer-contact i {
            color: var(--sage);
            width: 20px;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(248, 245, 240, 0.6);
            font-size: 14px;
            position: relative;
            z-index: 1;
        }
        
        /* === ANIMÁCIÓK === */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* === FEJLETT RESPONSIVE DESIGN === */
        @media (max-width: 1400px) {
            .container {
                max-width: 1200px;
            }
        }
        
        @media (max-width: 1200px) {
            .container {
                padding: 0 35px;
            }
            
            .philosophy-container, .contact-container {
                gap: 80px;
            }
            
            .footer-container {
                gap: 60px;
            }
            
            .image-frame {
                height: 550px;
            }
            
            .hero-content {
                margin-left: 8%;
            }
        }
        
        @media (max-width: 992px) {
            .container {
                padding: 0 30px;
            }
            
            .philosophy-container, .contact-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .philosophy-content {
                padding-right: 0;
            }
            
            .contact-info {
                padding-right: 0;
            }
            
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 50px;
            }
            
            .hero-content {
                margin-left: 5%;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 40px;
            }
            
            .image-frame {
                height: 500px;
            }
            
            section {
                padding: 80px 0;
            }
            
            .hero {
                min-height: 700px;
            }
            
            .portfolio-grid {
                gap: 25px;
            }
        }
        
        @media (max-width: 768px) {
            /* Menügomb megjelenítése mobilnézetben */
            .mobile-menu-btn {
                display: flex;
            }
            
            /* X gomb megjelenítése mobilnézetben */
            .nav-close-btn {
                display: flex;
            }
            
            nav ul {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: var(--ivory);
                flex-direction: column;
                justify-content: flex-start;
                padding: 100px 40px 40px;
                gap: 25px;
                transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
                box-shadow: var(--shadow-strong);
                z-index: 1000;
                overflow-y: auto;
            }
            
            nav ul.active {
                right: 0;
            }
            
            .nav-link {
                font-size: 16px;
                width: 100%;
                padding: 15px 0;
                border-bottom: 1px solid rgba(166, 124, 82, 0.1);
            }
            
            .nav-number {
                font-size: 12px;
                margin-right: 10px;
            }
            
            /* Hero section mobil optimalizálás */
            .hero {
                height: auto;
                min-height: 90vh;
                padding: 120px 0 80px;
            }
            
            .hero-bg-left, .hero-bg-right {
                width: 100%;
                clip-path: none;
                opacity: 0.3;
            }
            
            .hero-bg-left {
                background: linear-gradient(135deg, var(--parchment) 0%, #e0d6c8 80%);
            }
            
            .hero-content {
                margin: 0 auto;
                text-align: center;
                max-width: 100%;
                padding: 0 20px;
            }
            
            .hero-pre-title::before {
                display: none;
            }
            
            .hero-pre-title {
                justify-content: center;
                font-size: 12px;
                margin-bottom: 20px;
            }
            
            .hero-title {
                font-size: clamp(40px, 8vw, 56px);
                margin-bottom: 30px;
            }
            
            .hero-cta {
                margin-top: 40px;
            }
            
            .hero-cta .btn {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            
            /* Services grid mobilra */
            .services-grid, .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .service-card {
                padding: 40px 30px;
            }
            
            .service-meta {
                flex-direction: column;
                gap: 20px;
                align-items: flex-start;
            }
            
            .service-meta .btn-small {
                width: 100%;
            }
            
            /* Philosophy features mobilra */
            .philosophy-features {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .feature-item {
                padding: 20px;
            }
            
            /* Portfolio items mobilra */
            .portfolio-item {
                height: 350px;
            }
            
            .portfolio-overlay {
                padding: 30px 25px;
            }
            
            /* Contact section mobilra */
            .contact-actions {
                flex-direction: column;
                gap: 15px;
            }
            
            .contact-actions .btn {
                width: 100%;
            }
            
            /* Footer mobilra */
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            
            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-links a:hover {
                padding-left: 0;
            }
            
            .footer-links a::before {
                display: none;
            }
            
            .social-links {
                justify-content: center;
            }
            
            /* Image frame mobilra */
            .image-frame {
                height: 400px;
            }
            
            .image-frame::after {
                width: 40px;
                height: 40px;
                bottom: 15px;
                right: 15px;
            }
            
            /* Header logo mobilra */
            .logo-name {
                font-size: 24px;
            }
            
            .logo-title {
                font-size: 9px;
            }
            
            .logo::before {
                height: 40px;
            }
            
            /* Section padding mobilra */
            section {
                padding: 70px 0;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 20px;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .section-title, .services-title, .portfolio-title, .contact-title {
                font-size: 32px;
                margin-bottom: 30px;
            }
            
            .section-title::after, .contact-title::after {
                width: 50px;
            }
            
            .service-card, .hours-card {
                padding: 35px 25px;
            }
            
            .logo-name {
                font-size: 22px;
            }
            
            .logo-title {
                font-size: 8px;
                letter-spacing: 2.5px;
            }
            
            .hero-pre-title {
                font-size: 11px;
                letter-spacing: 3px;
            }
            
            .image-frame {
                height: 350px;
            }
            
            .portfolio-item {
                height: 300px;
            }
            
            .portfolio-overlay {
                padding: 25px 20px;
            }
            
            .btn, .btn-instagram {
                padding: 14px 24px;
                font-size: 11px;
            }
            
            .btn-instagram {
                padding: 16px 30px;
            }
            
            .more-services-link {
                padding: 12px 25px;
                font-size: 14px;
            }
            
            .contact-item {
                padding: 20px;
                gap: 15px;
            }
            
            .contact-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            
            .contact-text h4 {
                font-size: 18px;
            }
            
            .contact-text p {
                font-size: 15px;
            }
            
            .hours-card {
                padding: 35px 25px;
            }
            
            .hours-item {
                flex-direction: column;
                gap: 5px;
                text-align: center;
            }
            
            .footer-logo p {
                font-size: 15px;
            }
            
            .social-link {
                width: 40px;
                height: 40px;
            }
            
            section {
                padding: 60px 0;
            }
            
            .services-header, .portfolio-header {
                margin-bottom: 60px;
            }
        }
        
        @media (max-width: 400px) {
            .container {
                padding: 0 15px;
            }
            
            .hero-title {
                font-size: 32px;
            }
            
            .section-title, .services-title, .portfolio-title, .contact-title {
                font-size: 28px;
            }
            
            .logo-name {
                font-size: 20px;
            }
            
            .logo-title {
                font-size: 7px;
                letter-spacing: 2px;
            }
            
            nav ul {
                width: 280px;
                padding: 90px 30px 30px;
            }
            
            .nav-close-btn {
                top: 25px;
                right: 25px;
            }
            
            .btn {
                padding: 12px 20px;
                font-size: 10px;
            }
            
            .image-frame {
                height: 300px;
            }
            
            .portfolio-item {
                height: 250px;
            }
            
            .portfolio-overlay {
                padding: 20px 15px;
            }
            
            .portfolio-item-title {
                font-size: 18px;
            }
            
            .portfolio-category {
                font-size: 10px;
            }
            
            .feature-item {
                padding: 18px;
            }
            
            .feature-icon {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }
            
            .feature-text h4 {
                font-size: 16px;
            }
            
            .feature-text p {
                font-size: 13px;
            }
        }
        
        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .feature-item:hover,
            .service-card:hover,
            .portfolio-item:hover,
            .contact-item:hover,
            .hours-item:hover,
            .social-link:hover {
                transform: none;
            }
            
            .feature-item:active,
            .service-card:active,
            .portfolio-item:active {
                transform: scale(0.98);
            }
            
            .btn:active,
            .btn-small:active,
            .btn-instagram:active {
                transform: scale(0.95);
            }
        }
        
        /* Performance optimizations for mobile */
        @media (max-width: 768px) {
            .hero-bg-left, .hero-bg-right {
                animation: none;
                transition: none;
            }
            
            .image-frame::before,
            .image-frame::after {
                animation: none;
            }
        }
/* A létező .services-grid szabályt keresd meg */
.services-grid {
    display: grid;
    /* Változtasd meg ezt: */
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Tablet nézetnél javítás */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

/* Mobilos nézetnél maradhat 1 oszlop */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Kisebb mobilok */
@media (max-width: 576px) {
    .services-grid {
        gap: 25px;
    }
}/* JAVÍTOTT VERZIÓ */
.nav-close-btn {
    display: none; /* Alapértelmezésben rejtve */
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--charcoal);
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1001;
    opacity: 0; /* Kezdetben láthatatlan */
    visibility: hidden; /* Kezdetben elrejtve */
    transform: rotate(-90deg); /* Animációs kezdőpozíció */
}

/* Csak akkor jelenjen meg, ha a menü aktív */
.nav-close-btn.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: rotate(0deg);
}

.nav-close-btn:hover {
    background: rgba(166, 124, 82, 0.1);
    color: var(--clay);
    transform: rotate(90deg) scale(1.1);
}

.nav-close-btn.active:hover {
    transform: rotate(90deg) scale(1.1);
}

/* Tablet/mobil nézet */
@media (max-width: 768px) { 
    .nav-close-btn.active {
        display: flex; /* Csak aktív állapotban */
    }
}

/* ================================
   RESPONSIVE FOOTER + MAP
================================ */

.site-footer{
  background: #111;
  color: rgba(255,255,255,.82);
  padding: 70px 0 28px;
}

.site-footer .footer-container{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.site-footer .logo-text .logo-name{
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
}

.site-footer .logo-text .logo-title{
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .8;
  margin-top: 6px;
}

.site-footer p{
  margin-top: 16px;
  line-height: 1.7;
}

.site-footer h3{
  margin-bottom: 14px;
  font-size: 18px;
}

.site-footer a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
}

.site-footer a:hover{
  color: #fff;
}

.site-footer .footer-links ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li{
  margin: 10px 0;
}

.site-footer .footer-contact p{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 10px 0;
}

.site-footer .footer-contact i{
  margin-top: 2px;
  min-width: 18px;
  opacity: .8;
}

/* Social */
.site-footer .social-links{
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.site-footer .social-link{
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  transition: transform .2s ease, background .2s ease;
}

.site-footer .social-link:hover{
  background: rgba(255,255,255,.16);
  transform: translateY(-2px);
}

/* Map */
.site-footer .map-embed{
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.site-footer .map-embed iframe{
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* Bottom */
.site-footer .footer-bottom{
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}

/* Tablet */
@media (max-width: 992px){
  .site-footer .footer-container{
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
  }
}

/* Mobile */
@media (max-width: 600px){
  .site-footer{
    padding: 54px 0 22px;
  }
  .site-footer .footer-container{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .site-footer .map-embed iframe{
    height: 200px;
  }
}
