

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #625b44;
    --secondary: #B8956A;
    --accent: #D4AF37;
    --light: #F5F1E8;
    --white: #FFFFFF;
    --gray: #A3988C;
    --dark-gray: #5C5550;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}



.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(184, 149, 106, 0.1);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary);
    text-decoration: none;
}

.menu {
    display: flex;
    list-style: none;
    gap: 50px;
}

.menu a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: var(--transition);
}

.menu a:hover {
    color: var(--secondary);
}

.menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}



.home-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F5F1E8 0%, #E8DCC8 100%);
    overflow: hidden;
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(245, 241, 232, 0.8), rgba(245, 241, 232, 0.8)),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23B8956A" opacity="0.1"/></svg>');
    background-size: 50px 50px;
}

.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1), transparent);
}

.home-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    padding: 0 40px;
    text-align: center;
}

.home-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

.home-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary);
}

.home-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.home-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.action-btn {
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.action-btn.primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.action-btn.primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
}

.action-btn.secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.action-btn.secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--secondary);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}



.section-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-label.light {
    color: var(--accent);
}

.section-heading {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary);
}

.section-heading.light {
    color: var(--white);
}

.section-text {
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}



.about-section {
    padding: 150px 40px;
    background: var(--white);
}

.about-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-image-area {
    position: relative;
}

.image-stack {
    position: relative;
    height: 600px;
}

.stack-image {
    position: absolute;
    border-radius: 0;
}

.stack-image.main-image {
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}

.stack-image.accent-image {
    width: 60%;
    height: 60%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    opacity: 0.3;
}

.about-badge {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: var(--primary);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 0;
}

.badge-content h3 {
    font-size: 3rem;
    margin-bottom: 5px;
}

.badge-content p {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.about-content-area {
    padding-right: 20px;
}

.about-highlights {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-icon {
    color: var(--secondary);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.highlight-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(184, 149, 106, 0.2);
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat p {
    color: var(--gray);
    font-size: 0.9rem;
}



.services-section {
    padding: 150px 40px;
    background: var(--primary);
}

.services-header {
    max-width: 1400px;
    margin: 0 auto 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.header-right p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    padding-top: 40px;
}

.services-showcase {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-item.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.service-item.reverse .service-visual {
    order: 2;
}

.service-visual {
    position: relative;
    height: 400px;
}

.service-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    opacity: 0.3;
}

.service-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.service-details {
    color: var(--white);
}

.service-details h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.service-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
}

.service-link:hover {
    transform: translateX(5px);
}



.why-section {
    padding: 150px 40px;
    background: var(--light);
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-intro {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.why-card {
    background: var(--white);
    padding: 50px 40px;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon {
    color: var(--secondary);
    font-size: 1.5rem;
}

.card-header h3 {
    font-size: 1.3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.why-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.testimonial-feature {
    background: var(--white);
    padding: 80px 60px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--secondary);
    opacity: 0.2;
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 40px;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-quote {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--primary);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.testimonial-author p {
    color: var(--gray);
    font-size: 0.9rem;
}



.contact-section {
    padding: 150px 40px;
    background: var(--white);
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
}

.contact-intro {
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 50px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.detail-item {
    display: flex;
    gap: 20px;
}

.detail-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.detail-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-preview {
    background: var(--light);
    padding: 40px;
}

.process-preview h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
}

.process-list li {
    counter-increment: process-counter;
    padding-left: 40px;
    position: relative;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--secondary);
    color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.elegant-form {
    background: var(--light);
    padding: 60px;
}

.form-field {
    margin-bottom: 30px;
}

.form-field label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(184, 149, 106, 0.2);
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--primary);
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--secondary);
}



.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 40px;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand h3 {
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.footer-brand p {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 30px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}



@media (max-width: 1024px) {
    .home-title {
        font-size: 4rem;
    }
    
    .section-heading {
        font-size: 2.8rem;
    }
    
    .about-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-item.reverse .service-visual {
        order: 1;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .home-title {
        font-size: 3rem;
    }
    
    .services-header {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonial-feature {
        padding: 60px 40px;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
    }
}