:root {
    --color-primary: #5d4e42;
    --color-primary-dark: #4a3f35;
    --color-secondary: #8b7355;
    --color-accent: #a0856c;
    --color-light: #f5f2ef;
    --color-dark: #2c2420;
    --color-text: #3d3530;
    --color-text-light: #6b5f55;
    --color-white: #ffffff;
    --color-border: #e0d8d0;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

.container.narrow {
    max-width: 800px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

a:hover {
    color: var(--color-secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
}

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

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

.btn-secondary {
    background-color: var(--color-light);
    color: var(--color-text);
}

.btn-secondary:hover {
    background-color: var(--color-border);
}

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

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

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

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

.btn-text {
    background: none;
    padding: 0;
    color: var(--color-primary);
    font-weight: 500;
}

.btn-text:hover {
    color: var(--color-secondary);
}

.btn-full {
    width: 100%;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--color-text-light);
    background-color: var(--color-light);
    padding: 4px 12px;
    border-radius: 4px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 0;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark);
    transition: var(--transition);
}

.split-section {
    display: flex;
    min-height: 600px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left {
    padding: 80px 60px;
}

.split-right {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.split-right img,
.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    background-color: var(--color-light);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.intro-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.intro-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1.5;
}

.intro-text h2 {
    font-size: 2.25rem;
}

.intro-text p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background-color: var(--color-light);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

.service-content,
.approach-content,
.about-content,
.process-content {
    background-color: var(--color-light);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 0.75rem;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

.services-preview {
    padding: 100px 0;
    background-color: var(--color-white);
}

.section-header {
    margin-bottom: 48px;
}

.section-header.centered {
    text-align: center;
}

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

.services-cards {
    display: flex;
    gap: 32px;
}

.service-card {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 24px;
    background-color: var(--color-white);
}

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

.card-content p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.price {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

.cta-section {
    padding: 100px 0;
    background-color: var(--color-primary);
}

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

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

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.form-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 1rem;
}

.form-info p {
    color: var(--color-text-light);
}

.contact-form {
    flex: 1.5;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.75rem;
    max-width: 800px;
    margin: 1rem auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.active {
    transform: translateY(0);
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-content a {
    color: var(--color-white);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.page-hero {
    padding: 100px 0 80px;
    text-align: center;
    color: var(--color-white);
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin: 0;
}

.page-hero.legal {
    padding: 80px 0 60px;
}

.values-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.values-grid {
    display: flex;
    gap: 32px;
}

.value-item {
    flex: 1;
    text-align: center;
    padding: 40px 24px;
    background-color: var(--color-light);
    border-radius: 8px;
}

.value-icon {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.value-item h3 {
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin: 0;
}

.process-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    min-width: 50px;
}

.step-content h4 {
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.9375rem;
}

.materials-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.materials-content {
    display: flex;
    gap: 60px;
}

.materials-text {
    flex: 1.2;
}

.materials-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.material-item {
    background-color: var(--color-white);
    padding: 24px;
    border-radius: 8px;
}

.material-item h4 {
    margin-bottom: 0.25rem;
}

.material-item p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.9375rem;
}

.services-intro {
    padding: 60px 0;
    background-color: var(--color-light);
}

.intro-text.centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text.centered p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin: 0;
}

.services-full {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid var(--color-border);
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-content {
    flex: 1.5;
}

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

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

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 600;
}

.service-detail-price {
    flex: 0.8;
}

.price-card {
    background-color: var(--color-light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    position: sticky;
    top: 120px;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.pricing-note {
    padding: 60px 0;
    background-color: var(--color-light);
}

.note-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.note-box p {
    color: var(--color-text-light);
    margin: 0;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.info-block p {
    color: var(--color-text-light);
    margin: 0;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 8px 0;
    color: var(--color-text-light);
}

.hours-table td:first-child {
    color: var(--color-text);
}

.contact-map {
    flex: 1.2;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    color: var(--color-text-light);
}

.map-overlay svg {
    margin-bottom: 1rem;
}

.map-overlay p {
    margin: 0;
    font-weight: 500;
}

.transport-section {
    padding: 80px 0;
    background-color: var(--color-light);
}

.transport-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

.transport-grid {
    display: flex;
    gap: 32px;
}

.transport-item {
    flex: 1;
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 8px;
}

.transport-item h4 {
    margin-bottom: 0.75rem;
}

.transport-item p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.9375rem;
}

.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 48px;
}

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

.faq-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.faq-item h4 {
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.faq-item p {
    color: var(--color-text-light);
    margin: 0;
}

.thanks-section {
    padding: 120px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.thanks-icon svg {
    display: inline-block;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-selected {
    background-color: var(--color-light);
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-next {
    text-align: left;
    background-color: var(--color-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-next h3 {
    margin-bottom: 1rem;
}

.next-steps {
    margin: 0;
    padding-left: 1.5rem;
}

.next-steps li {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.legal-content {
    padding: 80px 0;
}

.legal-article {
    line-height: 1.8;
}

.legal-article h2 {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.legal-article h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-article h3 {
    margin-top: 1.5rem;
}

.legal-article p {
    color: var(--color-text);
}

.legal-article ul,
.legal-article ol {
    color: var(--color-text);
}

.last-updated {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

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

.legal-table th,
.legal-table td,
.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--color-border);
}

.legal-table th,
.cookie-table th {
    background-color: var(--color-light);
    font-weight: 600;
}

.legal-table td,
.cookie-table td {
    color: var(--color-text-light);
}

@media (max-width: 1024px) {
    .split-section {
        flex-direction: column;
        min-height: auto;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-right {
        min-height: 400px;
    }

    .split-right img,
    .split-left img {
        position: relative;
    }

    .intro-grid {
        flex-direction: column;
        gap: 48px;
    }

    .intro-stats {
        flex-direction: row;
    }

    .services-cards {
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 16px);
    }

    .form-wrapper {
        flex-direction: column;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .price-card {
        position: static;
    }

    .contact-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 24px);
    }

    .values-grid {
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 16px);
    }

    .materials-content {
        flex-direction: column;
    }

    .transport-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
        width: 100%;
        order: 3;
        padding-top: 16px;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .hamburger {
        display: flex;
    }

    .ad-disclosure {
        order: 2;
        margin-left: auto;
        margin-right: 16px;
    }

    .split-left {
        padding: 48px 24px;
    }

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

    .services-cards {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .intro-stats {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-direction: column;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .legal-table,
    .cookie-table {
        font-size: 0.875rem;
    }

    .legal-table th,
    .legal-table td,
    .cookie-table th,
    .cookie-table td {
        padding: 8px 12px;
    }
}
