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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #fafafa;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

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

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

.cookie-content a {
    text-decoration: underline;
    color: #6b4e3d;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.625rem 1.25rem;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-cookie-accept {
    background-color: #6b4e3d;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #5a3f2f;
}

.btn-cookie-reject {
    background-color: #e0e0e0;
    color: #2d2d2d;
}

.btn-cookie-reject:hover {
    background-color: #d0d0d0;
}

.header-asymmetric {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

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

.brand-block .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2d2d;
}

.nav-floating {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    border: 1px solid #e0e0e0;
    padding: 0.375rem 0.75rem;
    background-color: #f5f5f5;
}

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

.nav-list a {
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-list a:hover {
    color: #6b4e3d;
}

.hero-offset {
    max-width: 1400px;
    margin: 3.75rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content-left {
    flex: 1;
    padding-left: 4rem;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.hero-image-right {
    flex: 1.2;
    margin-right: -2rem;
    background-color: #e8e2da;
}

.hero-image-right img {
    width: 100%;
    height: 600px;
}

.cta-primary {
    display: inline-block;
    padding: 0.9375rem 2rem;
    background-color: #6b4e3d;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.cta-primary:hover {
    background-color: #5a3f2f;
}

.intro-narrow {
    max-width: 720px;
    margin: 5rem auto;
    padding: 0 2rem;
}

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

.intro-container p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}

.services-offset-layout {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4.5rem;
    background-color: #fff;
    padding: 2.5rem;
}

.card-left {
    margin-left: 0;
}

.card-right-shifted {
    margin-left: 8rem;
}

.card-center {
    margin-left: 4rem;
}

.card-image {
    flex: 1;
    background-color: #f0ebe5;
}

.card-image img {
    width: 100%;
    height: 400px;
}

.card-text {
    flex: 1;
}

.card-text h3 {
    font-size: 1.625rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.card-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #4a4a4a;
}

.price-tag {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b4e3d;
    margin-bottom: 0.75rem;
}

.link-inline {
    color: #6b4e3d;
    font-weight: 600;
    border-bottom: 2px solid #6b4e3d;
    transition: color 0.2s ease;
}

.link-inline:hover {
    color: #5a3f2f;
    border-bottom-color: #5a3f2f;
}

.value-proposition-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 5rem;
}

.value-image {
    flex: 1.3;
    background-color: #e8e2da;
}

.value-image img {
    width: 100%;
    height: 500px;
}

.value-text {
    flex: 1;
    padding-right: 3rem;
}

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

.benefit-list {
    list-style: none;
    padding-left: 0;
}

.benefit-list li {
    font-size: 1.0625rem;
    padding: 0.9375rem 0;
    padding-left: 1.875rem;
    position: relative;
    color: #4a4a4a;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6b4e3d;
    font-weight: 700;
}

.testimonial-overlap {
    max-width: 1100px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 2.5rem;
}

.testimonial-box {
    background-color: #fff;
    padding: 2.5rem;
    flex: 1;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-box:first-child {
    margin-top: 2.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
    color: #2d2d2d;
}

.testimonial-author {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #6b4e3d;
}

.form-section-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-wrapper {
    flex: 1.2;
    background-color: #fff;
    padding: 3rem;
    margin-top: 3rem;
}

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

.form-wrapper > p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d2d2d;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    background-color: #fafafa;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #6b4e3d;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #6b4e3d;
    color: #fff;
    border: none;
    font-size: 1.0625rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-submit:hover {
    background-color: #5a3f2f;
}

.form-image {
    flex: 1;
    background-color: #f0ebe5;
}

.form-image img {
    width: 100%;
    height: 600px;
}

.disclaimer-section {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 2.5rem;
    background-color: #f5f5f5;
    border-left: 4px solid #6b4e3d;
}

.disclaimer-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555;
}

.footer-asymmetric {
    background-color: #2d2d2d;
    color: #d0d0d0;
    margin-top: 6rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-col ul li a {
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

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

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

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

.page-hero-offset {
    max-width: 1400px;
    margin: 3.75rem auto 2rem;
    padding: 0 2rem 0 6rem;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: #4a4a4a;
}

.about-story-narrow {
    max-width: 820px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.story-container p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.875rem;
    color: #4a4a4a;
}

.story-container img {
    margin: 3rem 0;
    width: 100%;
    height: 450px;
    background-color: #f0ebe5;
}

.team-asymmetric {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.team-intro {
    max-width: 720px;
    margin-bottom: 3rem;
    margin-left: 5rem;
}

.team-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.team-intro p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.team-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-left: 2rem;
}

.team-member {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
}

.team-member h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.values-split {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.values-text {
    flex: 1;
    padding-left: 3rem;
}

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

.values-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.values-image {
    flex: 1.2;
    background-color: #e8e2da;
}

.values-image img {
    width: 100%;
    height: 500px;
}

.approach-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 3.75rem 2rem;
    background-color: #f9f7f4;
}

.approach-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

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

.services-detail-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.item-offset-left {
    margin-left: 0;
}

.item-offset-right {
    margin-left: 6rem;
}

.item-center {
    margin-left: 3rem;
    max-width: 1100px;
}

.service-detail-image {
    flex: 1;
    background-color: #f0ebe5;
}

.service-detail-image img {
    width: 100%;
    height: 450px;
}

.service-detail-text {
    flex: 1.2;
}

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

.service-detail-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 1rem;
    padding: 0.625rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a4a4a;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6b4e3d;
    font-weight: 700;
    font-size: 1.375rem;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-top: 1.5rem;
}

.price-main {
    font-size: 2rem;
    font-weight: 700;
    color: #6b4e3d;
}

.price-description {
    font-size: 0.9375rem;
    color: #888;
}

.cta-services {
    max-width: 900px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background-color: #6b4e3d;
    text-align: center;
}

.cta-services-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-services-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #f0e8e0;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.125rem 2.5rem;
    background-color: #fff;
    color: #6b4e3d;
    font-size: 1.0625rem;
    font-weight: 700;
    transition: background-color 0.2s ease;
}

.btn-cta-large:hover {
    background-color: #f5f5f5;
}

.contact-asymmetric {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    padding-left: 4rem;
    padding-top: 2rem;
}

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

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    color: #6b4e3d;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f9f7f4;
    border-left: 3px solid #6b4e3d;
}

.contact-note p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #555;
}

.contact-image-offset {
    flex: 1;
    background-color: #f0ebe5;
    margin-top: 4rem;
}

.contact-image-offset img {
    width: 100%;
    height: 550px;
}

.contact-map-placeholder {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2.5rem;
    background-color: #f5f5f5;
}

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

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

.thanks-container {
    background-color: #fff;
    padding: 4rem;
    text-align: center;
}

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

.thanks-container > p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

#service-confirmation {
    font-weight: 600;
    color: #6b4e3d;
    margin-bottom: 2.5rem;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-next-steps h2 {
    font-size: 1.625rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
}

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

.thanks-next-steps li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.thanks-cta {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.btn-back,
.btn-secondary {
    padding: 0.9375rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.btn-back {
    background-color: #6b4e3d;
    color: #fff;
}

.btn-back:hover {
    background-color: #5a3f2f;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #2d2d2d;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

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

.legal-container {
    background-color: #fff;
    padding: 3.75rem;
}

.legal-container h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-container > p:first-of-type {
    font-size: 0.9375rem;
    color: #888;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.625rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.25rem;
    margin-top: 1.875rem;
    margin-bottom: 0.75rem;
    color: #2d2d2d;
}

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

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

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

.legal-container a {
    color: #6b4e3d;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #5a3f2f;
}

@media (max-width: 1024px) {
    .hero-offset,
    .value-proposition-split,
    .form-section-asymmetric,
    .contact-asymmetric,
    .values-split,
    .service-card,
    .service-detail-item {
        flex-direction: column;
    }

    .hero-content-left {
        padding-left: 0;
    }

    .hero-image-right {
        margin-right: 0;
    }

    .card-right-shifted,
    .card-center,
    .item-offset-right,
    .item-center {
        margin-left: 0;
    }

    .values-text,
    .contact-info-block {
        padding-left: 0;
    }

    .team-intro {
        margin-left: 0;
    }

    .team-grid-offset {
        margin-left: 0;
    }

    .page-hero-offset {
        padding-left: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-content-left h1,
    .page-hero-content h1 {
        font-size: 2.25rem;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 1.25rem;
    }

    .nav-floating {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-overlap {
        flex-direction: column;
    }

    .testimonial-box:first-child {
        margin-top: 0;
    }

    .thanks-cta {
        flex-direction: column;
        align-items: stretch;
    }

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

    .legal-container {
        padding: 2rem;
    }
}