:root {
    --primary-color: #d4af37;
    --secondary-color: #8b7355;
    --accent-color: #c19a6b;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f4f1ea;
    --bg-white: #ffffff;
    --border-color: #e0ddd4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

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

.hero-text {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
}

.hero-visual svg {
    width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-outline:hover {
    background-color: var(--bg-light);
    border-color: var(--text-dark);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

section {
    padding: 4rem 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.philosophy {
    background-color: var(--bg-white);
}

.philosophy-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.philosophy-icon svg {
    width: 100%;
    height: 100%;
}

.featured-services {
    background-color: var(--bg-light);
}

.services-showcase {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.story {
    background-color: var(--bg-white);
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.story-visual {
    flex: 1;
}

.story-visual svg {
    width: 100%;
    height: auto;
}

.benefits {
    background-color: var(--bg-light);
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.testimonials {
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

.process {
    background-color: var(--bg-light);
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.statistics {
    background-color: var(--bg-white);
}

.stats-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.faq {
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

.cta h2 {
    color: var(--bg-white);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta .btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-color: var(--bg-white);
}

.cta .btn-primary:hover {
    background-color: transparent;
    color: var(--bg-white);
}

.footer {
    background-color: var(--text-dark);
    color: #ccc;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer h4 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer p {
    color: #aaa;
    line-height: 1.8;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #888;
}

.page-hero {
    background-color: var(--bg-light);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    color: var(--text-light);
}

.content-section {
    padding: 4rem 0;
}

.content-columns {
    display: flex;
    gap: 3rem;
}

.content-main {
    flex: 2;
}

.content-sidebar {
    flex: 1;
}

.content-main p,
.content-sidebar p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.highlight-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.team {
    background-color: var(--bg-light);
}

.team-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.member-avatar svg {
    width: 100%;
    height: 100%;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.philosophy-deep {
    background-color: var(--bg-white);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.philosophy-points {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.point-item {
    flex: 1;
    min-width: 280px;
}

.point-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.milestones {
    background-color: var(--bg-light);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 100px;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
}

.approach {
    background-color: var(--bg-white);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.approach-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.approach-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.sustainability {
    background-color: var(--bg-light);
}

.sustainability > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.sustainability-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.sustainability-item {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.sustainability-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.services-intro {
    background-color: var(--bg-white);
    padding: 2rem 0;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

.services-catalog {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.services-catalog h2 {
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.services-catalog h2:first-child {
    margin-top: 0;
}

.service-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.service-detail {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-icon-large svg {
    width: 100%;
    height: 100%;
}

.service-detail h3 {
    margin-bottom: 1rem;
}

.service-detail p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

.service-benefits {
    background-color: var(--bg-white);
}

.benefits-columns {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-col {
    flex: 1;
    min-width: 280px;
}

.benefit-col p {
    color: var(--text-light);
    line-height: 1.8;
}

.service-process {
    background-color: var(--bg-light);
}

.process-flow {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.flow-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.flow-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-info {
    background-color: var(--bg-white);
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
}

.contact-main {
    flex: 2;
}

.contact-sidebar {
    flex: 1;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

.contact-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-box h3 {
    margin-bottom: 1rem;
}

.contact-box p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.directions {
    background-color: var(--bg-light);
}

.directions-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.direction-block {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.direction-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.company-info-section {
    background-color: var(--bg-white);
}

.company-details p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.about-showroom {
    background-color: var(--bg-light);
}

.showroom-description p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.visit-cta {
    background-color: var(--secondary-color);
}

.visit-cta .cta-content h2 {
    color: var(--bg-white);
}

.visit-cta .cta-content p {
    color: #ddd;
}

.visit-cta .btn-primary {
    background-color: var(--bg-white);
    color: var(--secondary-color);
    border-color: var(--bg-white);
}

.visit-cta .btn-primary:hover {
    background-color: transparent;
    color: var(--bg-white);
}

.thank-you-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.next-steps {
    background-color: var(--bg-white);
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-item p {
    color: var(--text-light);
}

.legal-content {
    background-color: var(--bg-white);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text p,
.legal-text ul,
.legal-text table {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.legal-text ul {
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

.effective-date {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--primary-color);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.modal-content h3 {
    margin-bottom: 1.5rem;
}

.cookie-options {
    margin-bottom: 2rem;
}

.cookie-option {
    margin-bottom: 1rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        padding: 2rem;
        gap: 1rem;
        transition: 0.3s;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .container {
        flex-direction: column;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .story-content,
    .content-columns,
    .contact-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons .btn {
        width: 100%;
    }
}

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

    .page-hero h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .thank-you-actions .btn {
        width: 100%;
    }
}