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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fefefe;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b6f47;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background-color: #8b6f47;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #6f5737;
}

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

.btn-cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.hero-magazine {
    padding: 4rem 2rem;
    background-color: #f8f5f0;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-main-column {
    flex: 1;
    min-width: 300px;
}

.hero-main-column h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.hero-image-column {
    flex: 1;
    min-width: 300px;
}

.hero-image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    background-color: #e8e5e0;
}

.story-flow {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.narrow-content {
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.narrow-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3a3a3a;
}

.inline-image-block {
    margin: 4rem 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e5e0;
}

.two-column-editorial {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

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

.editorial-col h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.editorial-col p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.services-reveal {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.services-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.services-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header-centered p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

.services-magazine-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 320px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e8e5e0;
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a5a5a;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8b6f47;
    margin: 1rem 0;
}

.btn-select-service,
.btn-submit,
.btn-service-cta {
    padding: 0.9rem 1.8rem;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-select-service:hover,
.btn-submit:hover,
.btn-service-cta:hover {
    background-color: #1a1a1a;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background-color: #8b6f47;
    color: #fff;
}

.testimonial-block {
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.testimonial-block:last-child {
    margin-bottom: 0;
}

.testimonial-block blockquote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-block cite {
    font-size: 1rem;
    font-style: normal;
    color: #f5f5f5;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f8f5f0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
}

.contact-form {
    background-color: #fff;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
    min-width: 250px;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #2c2c2c;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b6f47;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 3rem 2rem 1rem 2rem;
}

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

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

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-left: 3px solid #8b6f47;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

.about-hero {
    padding: 5rem 2rem;
    background-color: #f8f5f0;
    text-align: center;
}

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

.about-content-wrapper h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.about-story {
    padding: 5rem 2rem;
}

.story-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 320px;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.story-image {
    flex: 1;
    min-width: 320px;
}

.story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e5e0;
}

.values-section {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background-color: #fff;
    border-left: 4px solid #8b6f47;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a5a5a;
}

.team-approach {
    padding: 5rem 2rem;
}

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

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.services-page-header {
    padding: 4rem 2rem;
    background-color: #f8f5f0;
    text-align: center;
}

.services-page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-page-header p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail-block {
    max-width: 1400px;
    margin: 0 auto 5rem auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 320px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8e5e0;
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.service-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b6f47;
    margin: 1.5rem 0;
}

.contact-page-header {
    padding: 4rem 2rem;
    background-color: #f8f5f0;
    text-align: center;
}

.contact-page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-page-header p {
    font-size: 1.1rem;
    color: #5a5a5a;
}

.contact-info-section {
    padding: 5rem 2rem;
}

.contact-info-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fafafa;
    border-left: 4px solid #8b6f47;
}

.contact-info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.contact-info-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

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

.visit-section {
    padding: 5rem 2rem;
    background-color: #fafafa;
}

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

.visit-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.visit-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    background-color: #f8f5f0;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.thanks-details {
    background-color: #fff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details p {
    font-size: 1rem;
    color: #4a4a4a;
}

.thanks-next-steps {
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.thanks-next-steps p {
    font-size: 1rem;
    color: #5a5a5a;
    margin-bottom: 1rem;
}

.thanks-next-steps ul {
    list-style: none;
    padding: 0;
}

.thanks-next-steps ul li {
    margin-bottom: 0.8rem;
}

.thanks-next-steps ul li a {
    color: #8b6f47;
    text-decoration: none;
    font-size: 1.05rem;
    transition: color 0.3s;
}

.thanks-next-steps ul li a:hover {
    color: #6f5737;
    text-decoration: underline;
}

.legal-page {
    padding: 5rem 2rem;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #3a3a3a;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

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

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #8b6f47;
    text-decoration: none;
}

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

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

    .hero-lead {
        font-size: 1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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

    .services-header-centered h2 {
        font-size: 2rem;
    }

    .about-content-wrapper h1,
    .services-page-header h1,
    .contact-page-header h1,
    .thanks-content h1 {
        font-size: 2rem;
    }
}