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

:root {
    --primary-brown: #3e2723;
    --medium-brown: #5d4037;
    --light-brown: #8d6e63;
    --accent-brown: #6d4c41;
    --cream: #f5f5dc;
    --off-white: #fafafa;
    --text-dark: #212121;
    --text-light: #757575;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--off-white);
    overflow-x: hidden;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-brown);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--cream);
    color: var(--primary-brown);
}

.btn-accept:hover {
    background-color: white;
    transform: translateY(-2px);
}

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

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

.header-asymmetric {
    background-color: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-area {
    flex: 0 0 auto;
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-brown);
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    flex: 0 0 auto;
}

.nav-floating {
    display: flex;
    gap: 2rem;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.nav-floating a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-floating a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-brown);
    transition: width 0.3s ease;
}

.nav-floating a:hover::after {
    width: 100%;
}

.hero-offset {
    position: relative;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.hero-visual {
    width: 85%;
    margin-left: 5%;
    height: 65vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
}

.hero-text-block {
    background-color: rgba(62, 39, 35, 0.92);
    padding: 2.5rem 3rem;
    max-width: 550px;
    color: white;
    transform: translateY(40%);
}

.hero-text-block h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 1.15rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-accent {
    position: absolute;
    right: 8%;
    top: 50%;
    width: 4px;
    height: 200px;
    background-color: var(--accent-brown);
}

.intro-stacked {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-left {
    flex: 1 1 55%;
}

.intro-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-brown);
    line-height: 1.3;
}

.intro-left p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.intro-right-img {
    flex: 1 1 45%;
    transform: translateY(-3rem);
}

.intro-right-img img {
    width: 100%;
    height: auto;
    box-shadow: 12px 12px 0 var(--light-brown);
}

.values-diagonal {
    background-color: var(--cream);
    padding: 6rem 2rem;
    margin: 5rem 0;
    position: relative;
}

.values-overlay {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
}

.value-card {
    background-color: white;
    padding: 2.5rem 2rem;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.value-card.offset-1 {
    transform: translateY(-1.5rem);
}

.value-card.offset-2 {
    transform: translateY(1rem);
}

.value-card.offset-3 {
    transform: translateY(-0.5rem);
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

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

.services-header-angled {
    max-width: 700px;
    margin-bottom: 4rem;
    margin-left: 8%;
}

.services-header-angled h2 {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

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

.service-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 320px;
    background-color: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-item.offset-down {
    transform: translateY(2rem);
}

.service-item.offset-down:hover {
    transform: translateY(1.2rem);
}

.service-item.offset-up {
    transform: translateY(-2rem);
}

.service-item.offset-up:hover {
    transform: translateY(-2.8rem);
}

.service-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-details {
    padding: 2rem;
}

.service-details h3 {
    font-size: 1.5rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.service-details p {
    font-size: 0.98rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-brown);
    margin-bottom: 1.5rem;
}

.cta-select {
    background-color: var(--primary-brown);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-select:hover {
    background-color: var(--accent-brown);
    transform: translateX(4px);
}

.form-section-overlap {
    background-color: var(--primary-brown);
    padding: 5rem 2rem;
    margin: 6rem 0;
    position: relative;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: rotate(-0.5deg);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 0.75rem;
}

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

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

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

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: var(--accent-brown);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: var(--primary-brown);
    transform: translateY(-2px);
}

.philosophy-split {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-text {
    flex: 1 1 50%;
}

.philosophy-text h2 {
    font-size: 2.2rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.philosophy-image {
    flex: 1 1 50%;
    height: 500px;
    background-size: cover;
    background-position: center;
    transform: translateX(3rem);
    box-shadow: -16px 16px 0 var(--medium-brown);
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.disclaimer-section {
    background-color: #f9f9f9;
    padding: 3rem 2rem;
    margin: 4rem 0;
}

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

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

.footer-asymmetric {
    background-color: var(--primary-brown);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 1rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-col a {
    color: white;
    opacity: 0.85;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--cream);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.page-hero-minimal {
    background-color: var(--cream);
    padding: 5rem 2rem 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.page-hero-content h1 {
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

.story-block-left,
.story-block-right {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.story-block-right {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1 1 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-text {
    flex: 1 1 55%;
}

.story-text h2 {
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 1.25rem;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.story-block-center {
    max-width: 800px;
    margin: 5rem auto;
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--cream);
}

.story-block-center h2 {
    font-size: 2.2rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

.story-block-center p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    background-color: white;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--accent-brown);
    margin-bottom: 1rem;
}

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

.team-asymmetric {
    background-color: var(--medium-brown);
    color: white;
    padding: 4rem 2rem;
    margin: 5rem 0;
    text-align: center;
}

.team-asymmetric h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.team-asymmetric p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-offset {
    margin: 6rem 0;
    padding: 0 2rem;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--cream);
    padding: 4rem 3rem;
    transform: translateX(-5%);
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.btn-cta {
    display: inline-block;
    background-color: var(--accent-brown);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--primary-brown);
    transform: translateY(-3px);
    color: white;
}

.services-detailed {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-full {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: stretch;
}

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

.service-content-left,
.service-content-right {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
}

.service-image-left,
.service-image-right {
    flex: 1 1 50%;
    background-size: cover;
    background-position: center;
    min-height: 450px;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h2 {
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 0.75rem;
}

.service-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-brown);
}

.service-description h3 {
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin: 1.5rem 0 1rem;
}

.service-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-description ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding-left: 0;
}

.service-description ul li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-description ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-brown);
    font-size: 1.5rem;
    line-height: 1;
}

.contact-layout {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info-offset {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block h2 {
    font-size: 1.6rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-visual {
    flex: 1 1 60%;
    height: 500px;
    background-size: cover;
    background-position: center;
    transform: translateY(-2rem);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-note {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.note-content {
    background-color: var(--cream);
    padding: 3rem;
}

.note-content h2 {
    font-size: 1.8rem;
    color: var(--primary-brown);
    margin-bottom: 1.25rem;
}

.note-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1 1 50%;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-confirmation {
    font-weight: 600;
    color: var(--accent-brown);
    font-size: 1.15rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-brown);
    padding: 1rem 2rem;
    border: 2px solid var(--primary-brown);
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-visual {
    flex: 1 1 50%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.next-steps {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 3rem;
    text-align: center;
}

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

.step-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: white;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.step-item h3 {
    font-size: 1.5rem;
    color: var(--accent-brown);
    margin-bottom: 1rem;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.7;
}

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

.legal-content {
    background-color: white;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--accent-brown);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

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

.legal-content em {
    font-style: italic;
    color: var(--text-light);
}

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

@media (max-width: 1024px) {
    .hero-visual {
        width: 95%;
        margin-left: 2.5%;
    }

    .intro-stacked,
    .philosophy-split,
    .contact-layout,
    .thanks-section {
        flex-direction: column;
    }

    .philosophy-image {
        transform: none;
        height: 350px;
    }

    .intro-right-img {
        transform: none;
    }

    .story-block-left,
    .story-block-right {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-floating {
        width: 100%;
        flex-wrap: wrap;
        gap: 1rem;
    }

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

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

    .cookie-content p {
        flex: 1 1 100%;
    }

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

    .service-item.offset-down,
    .service-item.offset-up {
        transform: none;
    }

    .services-grid-offset {
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}