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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.7;
    color: #2a2a2a;
    background: #fafaf8;
}

h1, h2, h3, h4 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8em;
    margin-bottom: 0.6em;
}

h2 {
    font-size: 2.2em;
    margin-bottom: 0.7em;
}

h3 {
    font-size: 1.6em;
    margin-bottom: 0.6em;
}

h4 {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1.2em;
}

a {
    color: #3d5a2a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2d4520;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 0.75em;
    color: #666;
    background: #f0f0ed;
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    order: 3;
    margin-top: 0.5rem;
}

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

.main-nav a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95em;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 5rem 4rem;
    background: #f5f5f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
}

.hero-left p {
    font-size: 1.2em;
    margin-bottom: 2em;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #d4d4ce;
}

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

.intro-image {
    flex: 0 0 42%;
    background-size: cover;
    background-position: center;
    background-color: #c9c9c0;
}

.intro-text {
    flex: 1;
    padding: 4.5rem 5rem;
    background: #ffffff;
}

.services-preview {
    padding: 5rem 2rem;
    background: #fafaf8;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.8em;
}

.section-header-center p {
    font-size: 1.1em;
    color: #555;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: #ffffff;
    border: 1px solid #e5e5e0;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #d4d4ce;
}

.service-card h3 {
    margin: 1.5rem 1.5rem 0.8rem;
    font-size: 1.5em;
}

.service-card p {
    margin: 0 1.5rem 1rem;
    flex-grow: 1;
}

.service-price {
    margin: 0 1.5rem 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.4em;
    font-weight: 600;
    color: #3d5a2a;
}

.btn-service-select {
    margin: 1.5rem;
    padding: 0.9rem 1.5rem;
    background: #3d5a2a;
    color: #ffffff;
    font-size: 1em;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-service-select:hover {
    background: #2d4520;
}

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

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-info {
    flex: 0 0 38%;
}

.form-wrapper {
    flex: 1;
}

.selected-service-display {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f5f5f0;
    border-left: 3px solid #3d5a2a;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    color: #333;
}

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

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: #3d5a2a;
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #2d4520;
}

.philosophy-split {
    display: flex;
    min-height: 500px;
}

.philosophy-text {
    flex: 1;
    padding: 4rem 5rem;
    background: #f5f5f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-image {
    flex: 0 0 45%;
    background-size: cover;
    background-position: center;
    background-color: #c9c9c0;
}

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

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

.footer-section {
    flex: 1 1 220px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    font-size: 0.95em;
    line-height: 1.8;
}

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

.footer-section a {
    color: #d0d0ca;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 0.85em;
    line-height: 1.6;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3d5a2a;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05em;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #2d4520;
    color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 200;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
}

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

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

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

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

.btn-accept {
    padding: 0.7rem 1.5rem;
    background: #3d5a2a;
    color: #ffffff;
    font-size: 0.95em;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-accept:hover {
    background: #2d4520;
}

.btn-reject {
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 0.95em;
    font-weight: 500;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

.page-hero {
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #c9c9c0;
    display: flex;
    align-items: flex-end;
}

.page-hero-overlay {
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 3rem 2rem;
}

.page-hero-overlay h1 {
    color: #ffffff;
    max-width: 1400px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    min-height: 550px;
}

.about-content {
    flex: 1;
    padding: 4rem 5rem;
    background: #ffffff;
}

.about-image {
    flex: 0 0 46%;
    background-size: cover;
    background-position: center;
    background-color: #c9c9c0;
}

.philosophy-section {
    padding: 5rem 2rem;
    background: #f5f5f0;
}

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

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

.philosophy-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.team-split {
    display: flex;
    min-height: 500px;
}

.team-image {
    flex: 0 0 40%;
    background-size: cover;
    background-position: center;
    background-color: #c9c9c0;
}

.team-content {
    flex: 1;
    padding: 4rem 5rem;
    background: #ffffff;
}

.process-section {
    padding: 5rem 2rem;
    background: #fafaf8;
}

.process-container {
    max-width: 1100px;
    margin: 0 auto;
}

.process-steps {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #3d5a2a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.3em;
    font-weight: 700;
}

.values-split {
    display: flex;
    min-height: 500px;
}

.values-content {
    flex: 1;
    padding: 4rem 5rem;
    background: #f5f5f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-image {
    flex: 0 0 48%;
    background-size: cover;
    background-position: center;
    background-color: #c9c9c0;
}

.cta-text {
    display: inline-block;
    margin-top: 1rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: #3d5a2a;
    border-bottom: 2px solid #3d5a2a;
    transition: color 0.3s ease;
}

.cta-text:hover {
    color: #2d4520;
}

.page-header-alt {
    padding: 4rem 2rem;
    background: #f5f5f0;
    text-align: center;
}

.page-header-alt h1 {
    max-width: 900px;
    margin: 0 auto 1rem;
}

.page-header-alt p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1em;
    color: #555;
}

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

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

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

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #d4d4ce;
    border-radius: 4px;
}

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

.service-pricing-detail {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f5f5f0;
    border-left: 4px solid #3d5a2a;
}

.price-tag {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: #3d5a2a;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

.commission-cta {
    padding: 5rem 2rem;
    background: #3d5a2a;
    text-align: center;
}

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

.commission-cta h2 {
    color: #ffffff;
}

.commission-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1em;
}

.cta-primary-large {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #3d5a2a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.1em;
    font-weight: 700;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.cta-primary-large:hover {
    background: #f5f5f0;
    color: #3d5a2a;
}

.contact-hero {
    padding: 4rem 2rem;
    background: #f5f5f0;
    text-align: center;
}

.contact-hero h1 {
    max-width: 900px;
    margin: 0 auto 1rem;
}

.contact-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1em;
}

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

.contact-info-block {
    flex: 1;
    padding: 4rem 5rem;
    background: #ffffff;
}

.contact-visual-block {
    flex: 0 0 44%;
    background-size: cover;
    background-position: center;
    background-color: #c9c9c0;
}

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

.contact-detail h2 {
    font-size: 1.4em;
    margin-bottom: 0.8rem;
}

.contact-note {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
}

.contact-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: #3d5a2a;
}

.directions-section {
    padding: 5rem 2rem;
    background: #fafaf8;
}

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

.directions-content {
    display: flex;
    gap: 4rem;
    margin-top: 2rem;
    align-items: center;
}

.directions-text {
    flex: 1;
}

.directions-image {
    flex: 0 0 40%;
}

.directions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #d4d4ce;
    border-radius: 4px;
}

.visit-info {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.thanks-container {
    display: flex;
    min-height: 75vh;
}

.thanks-content {
    flex: 1;
    padding: 5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-image {
    flex: 0 0 40%;
    background-size: cover;
    background-position: center;
    background-color: #c9c9c0;
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-message {
    font-size: 1.15em;
    margin-bottom: 2rem;
}

.submission-details {
    padding: 1.5rem;
    background: #f5f5f0;
    border-left: 4px solid #3d5a2a;
    margin-bottom: 2rem;
}

.next-steps {
    margin: 3rem 0;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step-item {
    padding: 1rem 1.5rem;
    background: #fafaf8;
    border-left: 3px solid #3d5a2a;
}

.step-item strong {
    color: #3d5a2a;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background: #3d5a2a;
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #2d4520;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #3d5a2a;
    border: 2px solid #3d5a2a;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3d5a2a;
    color: #ffffff;
}

.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.legal-updated {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.3em;
}

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

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

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

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    border: 1px solid #e5e5e0;
    text-align: left;
}

.cookie-table th {
    background: #f5f5f0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .about-split,
    .team-split,
    .philosophy-split,
    .values-split,
    .contact-split-layout,
    .thanks-container {
        flex-direction: column;
    }

    .hero-left,
    .intro-text,
    .about-content,
    .team-content,
    .philosophy-text,
    .values-content,
    .contact-info-block,
    .thanks-content {
        padding: 3rem 2rem;
    }

    .hero-right,
    .intro-image,
    .about-image,
    .team-image,
    .philosophy-image,
    .values-image,
    .contact-visual-block,
    .thanks-image {
        min-height: 350px;
    }

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

    .form-container-split {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

    h2 {
        font-size: 1.8em;
    }

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

    .main-nav {
        width: 100%;
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .services-grid {
        gap: 1.5rem;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}