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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #c9a277;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd9;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: var(--text-light);
    font-family: Arial, sans-serif;
    border-bottom: 1px solid var(--border-color);
}

.site-header {
    background-color: var(--bg-white);
    border-bottom: 2px solid var(--primary-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-nav a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-magazine {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-main {
    flex: 1 1 65%;
    min-width: 300px;
    position: relative;
    background-color: var(--bg-light);
}

.hero-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
    padding: 3rem 2.5rem;
    color: white;
}

.hero-overlay h1 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 2.5rem;
}

.hero-overlay p {
    font-size: 1.15rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.hero-sidebar {
    flex: 1 1 30%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.quick-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--secondary-color);
    height: 100%;
}

.quick-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.quick-info p {
    font-size: 1rem;
    line-height: 1.6;
}

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

.column-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.col-main {
    flex: 1 1 60%;
    min-width: 300px;
}

.col-side {
    flex: 1 1 35%;
    min-width: 280px;
}

.image-stack {
    background-color: var(--bg-light);
    padding: 1rem;
}

.image-stack img {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.image-caption {
    padding: 1rem;
    background-color: var(--bg-white);
}

.image-caption p {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 0;
}

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

.blocks-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: stretch;
}

.feature-block {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-top: 3px solid var(--secondary-color);
}

.feature-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-highlight {
    padding: 0;
    background-color: transparent;
    border: none;
}

.feature-highlight img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.services-preview {
    padding: 5rem 0;
}

.section-header-offset {
    margin-bottom: 3rem;
    padding-left: 1rem;
    border-left: 6px solid var(--accent-color);
}

.section-header-offset h2 {
    margin-bottom: 0.5rem;
}

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

.services-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    background-color: var(--bg-light);
    padding: 2rem;
    position: relative;
    border-bottom: 3px solid var(--secondary-color);
}

.service-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
}

.service-card h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-price {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.btn-select {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

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

.cta-centered {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

.form-intro {
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.contact-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.9rem;
    font-family: Georgia, serif;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-field input[readonly] {
    background-color: #e9e6e2;
    cursor: not-allowed;
}

.btn-submit {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    transition: background-color 0.3s ease;
}

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

.architectural-insights {
    padding: 5rem 0;
}

.insight-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.insight-text {
    flex: 1 1 50%;
    min-width: 300px;
}

.insight-image {
    flex: 1 1 45%;
    min-width: 300px;
    background-color: var(--bg-light);
}

.insight-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.page-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.page-hero h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-hero .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.about-content {
    padding: 3rem 0 5rem;
}

.about-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.about-main {
    flex: 1 1 65%;
    min-width: 300px;
}

.about-sidebar {
    flex: 1 1 30%;
    min-width: 280px;
}

.about-image {
    margin: 2.5rem 0;
    background-color: var(--bg-light);
    padding: 1rem;
}

.about-image img {
    width: 100%;
    height: auto;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.value-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 240px;
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.value-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.sidebar-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-top: 3px solid var(--secondary-color);
}

.sidebar-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.sidebar-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.sidebar-image {
    background-color: var(--bg-light);
    padding: 1rem;
}

.sidebar-image img {
    width: 100%;
    height: auto;
}

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

.team-approach h2 {
    margin-bottom: 1rem;
}

.team-approach p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.services-detailed {
    padding: 3rem 0 5rem;
}

.service-full {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
    align-items: flex-start;
}

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

.service-content {
    flex: 1 1 55%;
    min-width: 300px;
    position: relative;
}

.service-number-large {
    position: absolute;
    top: -2rem;
    left: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 6rem;
    font-weight: 700;
    color: var(--bg-light);
    line-height: 1;
    z-index: 0;
}

.service-content h2 {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
}

.service-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.theme-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.theme-list li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.detail-item {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
}

.detail-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.service-visual {
    flex: 1 1 40%;
    min-width: 300px;
    background-color: var(--bg-light);
}

.service-visual img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-content {
    padding: 3rem 0 5rem;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-main {
    flex: 1 1 65%;
    min-width: 300px;
}

.contact-sidebar {
    flex: 1 1 30%;
    min-width: 280px;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-block p {
    line-height: 1.8;
}

.contact-block .note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.8rem;
}

.contact-image {
    margin-top: 3rem;
    background-color: var(--bg-light);
    padding: 1rem;
}

.contact-image img {
    width: 100%;
    height: auto;
}

.info-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-color);
}

.info-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.info-box a {
    text-decoration: underline;
}

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

.thanks-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 4rem 3rem;
    text-align: center;
    border-top: 5px solid var(--secondary-color);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border-radius: 50%;
}

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

.thanks-box .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    text-align: left;
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
}

.thanks-details p {
    margin-bottom: 1rem;
}

.thanks-next {
    text-align: left;
    margin: 2rem 0;
}

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

.thanks-next ol {
    margin-left: 1.5rem;
}

.thanks-next li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    padding: 3rem 0 5rem;
}

.legal-content h1 {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-color);
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.legal-content h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-style: italic;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 60%;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: var(--secondary-color);
    color: white;
}

.btn-cookie-accept:hover {
    background-color: var(--accent-color);
}

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

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

    h2 {
        font-size: 1.7rem;
    }

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

    .hero-main {
        flex: 1 1 100%;
    }

    .hero-sidebar {
        flex: 1 1 100%;
    }

    .hero-main img {
        height: 400px;
    }

    .hero-overlay {
        padding: 2rem 1.5rem;
    }

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

    .column-layout,
    .blocks-grid,
    .services-magazine,
    .insight-grid,
    .about-layout,
    .service-full,
    .contact-layout,
    .footer-content {
        flex-direction: column;
    }

    .service-full.reverse {
        flex-direction: column;
    }

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

    .main-nav {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }
}
