:root {
    --bg-main: #ffffff;
    --bg-sec: #f9fafb;
    --bg-card: #ffffff;
    --text-main: #111827;
    --text-muted: #4b5563;
    --accent: #b08d57;
    --accent-light: rgba(176, 141, 87, 0.08);
    --border: #e5e7eb;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --section-padding: 100px;
}

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

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Lora', serif; font-weight: 500; color: var(--text-main); }

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- NAVIGACIJA --- */
nav {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    z-index: 2000;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span { color: var(--accent); }

.nav-links { display: flex; list-style: none; gap: 35px; }

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

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

/* Meniu mygtukas */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.3s;
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: radial-gradient(circle at top right, var(--accent-light), transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.hero-text h1 { font-size: 4.2rem; margin-bottom: 25px; line-height: 1.1; }
.hero-content h2 { font-size: 1.5rem; margin-bottom: 20px; color: var(--text-muted); font-weight: 400; }
.hero-content p { color: var(--text-muted); font-size: 1.15rem; max-width: 500px; margin-bottom: 45px; }

.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: 4px; position: relative; z-index: 2; }

.cta-button {
    display: inline-block; padding: 18px 45px; background: var(--text-main);
    color: #fff; text-decoration: none; font-weight: 600; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 2px; transition: 0.4s;
}
.cta-button:hover { background: var(--accent); transform: translateY(-3px); }

/* --- QUOTE --- */
.quote-bar {
    padding: 110px 0;
    text-align: center;
    background-color: var(--bg-sec);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.quote-bar p {
    font-family: 'Lora', serif;
    font-size: 2.4rem;
    font-style: italic;
    color: var(--text-main);
    max-width: 900px;
    margin: 0 auto;
}

.quote-bar p::before { content: "“"; color: var(--accent); margin-right: 15px; opacity: 0.5; }
.quote-bar p::after { content: "”"; color: var(--accent); margin-left: 15px; opacity: 0.5; }

/* --- SEKCIJŲ STILIUS --- */
section { padding: var(--section-padding) 0; }
.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; margin-top: 10px; }

.about-text p { margin-bottom: 25px; font-size: 1.15rem; color: var(--text-muted); }
.diva-box {
    background: var(--bg-sec);
    padding: 45px; border-left: 4px solid var(--accent);
    margin-top: 50px; border-radius: 2px;
}

.why-list { list-style: none; max-width: 850px; }
.why-list li {
    padding: 22px 0; border-bottom: 1px solid var(--border);
    font-size: 1.25rem; display: flex; align-items: center;
}
.why-list li::before { content: "—"; color: var(--accent); margin-right: 25px; font-weight: bold; }

.errors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.error-card { background: var(--bg-main); padding: 45px; border: 1px solid var(--border); transition: 0.3s; }
.error-card:hover { border-color: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.number { color: var(--accent); font-size: 2rem; font-family: 'Lora', serif; opacity: 0.5; display: block; margin-bottom: 15px; }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.service-card { background: var(--bg-main); padding: 55px; border: 1px solid var(--border); }
.service-card h3 { color: var(--accent); margin-bottom: 25px; font-size: 1.9rem; }
.service-card ul { list-style: none; margin-bottom: 40px; color: var(--text-muted); }
.service-card li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.result { font-weight: 600; font-family: 'Lora', serif; border-top: 2px solid var(--accent); padding-top: 25px; font-size: 1.1rem; }

.project-highlight {
    background: var(--text-main);
    color: #fff;
    text-align: center; padding: 100px 40px; border-radius: 4px;
}
.project-highlight h2 { color: #fff; font-size: 2.8rem; margin-bottom: 20px; }
.benefits { display: flex; justify-content: center; gap: 40px; margin-top: 50px; font-family: 'Lora', serif; font-size: 1.4rem; color: var(--accent); }

/* --- FOOTER --- */
footer { padding: 100px 0 50px; text-align: center; background: var(--bg-sec); border-top: 1px solid var(--border); }
.contact-links { margin: 40px 0; display: flex; justify-content: center; gap: 50px; }
.contact-links a {
    color: var(--text-main); font-size: 1.6rem; text-decoration: none;
    border-bottom: 2px solid var(--accent); transition: 0.3s; font-family: 'Lora', serif;
}
.contact-links a:hover { color: var(--accent); }

/* --- MOBILUS PRITAIKYMAS --- */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }

    .nav-links.active { right: 0; }

    .menu-toggle.open span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

    .hero { padding-top: 100px; text-align: center; min-height: auto; padding-bottom: 50px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-image { max-width: 280px; margin: 0 auto; order: -1; }

    .project-highlight { padding: 60px 20px; }
    .project-highlight h2 { font-size: 1.8rem; }
    .benefits { flex-direction: column; gap: 15px; margin-top: 25px; }

    footer { padding: 60px 0 30px; }
    .contact-links { flex-direction: column; gap: 20px; margin: 30px 0; }
    .contact-links a { font-size: 1.2rem; }
    .footer-content h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 2rem; }
    .quote-bar p { font-size: 1.4rem; }
}