﻿/* THEME: ORGANIC MODERNISM (AUSTRIA) */
:root {
    /* Palette: Sage Green, Earthy Beige, Soft Charcoal */
    --arw-primary: #5D6D58;    /* Sage Green */
    --arw-secondary: #8C9985;  /* Light Sage */
    --arw-accent: #D6CFC7;     /* Warm Sand */
    --arw-bg: #F9F7F4;         /* Off-White/Paper */
    --arw-card-bg: #FFFFFF;    /* White */
    --arw-text: #3A3A3A;       /* Soft Black */
    --arw-text-muted: #6B6B6B; /* Grey */
    --arw-border: #E8E4DF;
    
    --arw-font-head: 'Cormorant Garamond', serif;
    --arw-font-body: 'Lato', sans-serif;
    
    --arw-radius: 16px;
    --arw-shadow: 0 10px 40px rgba(93, 109, 88, 0.08);
    --arw-container: 1140px;
}

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

body {
    font-family: var(--arw-font-body);
    background-color: var(--arw-bg);
    color: var(--arw-text);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4 { 
    font-family: var(--arw-font-head); 
    color: var(--arw-primary); 
    font-weight: 600; 
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
p { margin-bottom: 1.5rem; color: var(--arw-text-muted); }
img { max-width: 100%; border-radius: var(--arw-radius); display: block; }

/* UTILITY CLASSES */
.arw-container { max-width: var(--arw-container); margin: 0 auto; padding: 0 20px; }
.arw-flex-center { display: flex; align-items: center; justify-content: center; }
.arw-section { padding: 100px 0; }
.arw-bg-white { background: var(--arw-card-bg); }

/* BUTTONS */
.arw-btn {
    display: inline-block;
    background-color: var(--arw-primary);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: var(--arw-shadow);
    transition: transform 0.2s, background 0.3s;
}

.arw-btn:hover {
    background-color: #4A5846;
    transform: translateY(-2px);
}

.arw-btn-outline {
    background: transparent;
    border: 2px solid var(--arw-primary);
    color: var(--arw-primary);
}
.arw-btn-outline:hover {
    background: var(--arw-primary);
    color: #fff;
}

/* HEADER */
.arw-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.02);
}

.arw-nav-wrapper { display: flex; justify-content: space-between; align-items: center; }

.arw-logo { 
    display: flex; align-items: center; gap: 12px; 
    font-family: var(--arw-font-head); 
    font-size: 1.8rem; font-weight: 700; 
    color: var(--arw-primary);
}
.arw-logo img { height: 40px; width: 40px; }

.arw-nav-menu { display: flex; list-style: none; gap: 40px; }
.arw-nav-link { font-weight: 600; font-size: 0.95rem; color: var(--arw-text); letter-spacing: 0.5px; text-transform: uppercase; }
.arw-nav-link:hover { color: var(--arw-primary); }

.arw-mobile-toggle { display: none; font-size: 1.8rem; cursor: pointer; color: var(--arw-primary); }

/* MOBILE MENU */
@media (max-width: 768px) {
    .arw-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .arw-nav-menu.active { display: flex; }
    .arw-mobile-toggle { display: block; }
    h1 { font-size: 2.5rem; }
}

/* HERO */
.arw-hero {
    position: relative;
    height: 85vh;
    background: url('https://images.pexels.com/photos/3822864/pexels-photo-3822864.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
    display: flex;
    align-items: center;
}
.arw-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(249,247,244,0.9) 0%, rgba(249,247,244,0.4) 60%, rgba(255,255,255,0) 100%);
}
.arw-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.arw-hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--arw-accent);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--arw-text);
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* SERVICES GRID */
.arw-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}
.arw-card {
    background: var(--arw-card-bg);
    border-radius: var(--arw-radius);
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid var(--arw-border);
}
.arw-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--arw-shadow);
}
.arw-card-img { height: 260px; width: 100%; object-fit: cover; }
.arw-card-body { padding: 30px; }

/* CONTACT & FORM */
.arw-form-box {
    background: var(--arw-card-bg);
    padding: 50px;
    border-radius: var(--arw-radius);
    box-shadow: var(--arw-shadow);
}
.arw-input-group { margin-bottom: 20px; }
.arw-input-label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; }
.arw-input {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--arw-border);
    border-radius: 8px;
    background: #FAFAFA;
    font-family: var(--arw-font-body);
    font-size: 1rem;
    transition: 0.3s;
}
.arw-input:focus { outline: none; border-color: var(--arw-primary); background: #fff; }

/* FAQ */
.arw-faq-item {
    background: var(--arw-card-bg);
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid var(--arw-border);
    overflow: hidden;
}
.arw-faq-header {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-family: var(--arw-font-head);
    font-size: 1.1rem;
    background: var(--arw-card-bg);
    transition: 0.3s;
}
.arw-faq-header:hover { background: #fdfdfd; }
.arw-faq-body {
    padding: 0 30px 30px 30px;
    display: none;
    color: var(--arw-text-muted);
}
.arw-faq-item.active .arw-faq-body { display: block; }
.arw-faq-icon { transition: 0.3s; }
.arw-faq-item.active .arw-faq-icon { transform: rotate(45deg); }

/* FOOTER */
.arw-footer {
    background: #EBE8E1;
    padding: 80px 0 30px;
    margin-top: 80px;
}
.arw-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}
.arw-footer-link { display: block; margin-bottom: 12px; color: var(--arw-text); opacity: 0.7; }
.arw-footer-link:hover { opacity: 1; color: var(--arw-primary); }
.arw-copyright {
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    color: var(--arw-text-muted);
}

/* COOKIE BANNER */
.arw-cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-top: 3px solid var(--arw-primary);
}
