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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    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;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4a5d4e;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

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

.nav-links a:hover {
    color: #4a5d4e;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #f9f7f4;
}

.hero-content {
    flex: 1;
    padding: 8rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f0ebe5;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 520px;
    color: #4a4a4a;
}

.hero-image {
    flex: 1;
    background-color: #d4cec4;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: #4a5d4e;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #3a4d3e;
}

.intro-split {
    display: flex;
    align-items: center;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    background-color: #d8d3ca;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
    padding: 5rem 4rem;
}

.split-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    font-weight: 400;
    color: #2c2c2c;
}

.split-content p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #4a4a4a;
}

.philosophy-full {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.content-narrow {
    max-width: 740px;
    margin: 0 auto;
}

.content-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.content-narrow p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #f9f7f4;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 0.8rem;
    font-weight: 500;
}

.service-card p {
    font-size: 0.95rem;
    margin: 0 1.5rem 1rem;
    color: #666;
}

.service-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a5d4e;
    margin: 1rem 1.5rem;
}

.select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #4a5d4e;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #3a4d3e;
}

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

.form-intro {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #e8e3db;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.form-intro p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.form-container {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.commission-form {
    max-width: 480px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #4a4a4a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a5d4e;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #4a5d4e;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #3a4d3e;
}

.process-split {
    display: flex;
    align-items: center;
    background-color: #f4f1ed;
}

.process-steps {
    margin-top: 2rem;
}

.step {
    margin-bottom: 2rem;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #4a5d4e;
}

.step p {
    font-size: 0.95rem;
    color: #666;
}

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

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-section p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: #d0d0d0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.5;
}

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

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

.btn-accept {
    background-color: #4a5d4e;
    color: #ffffff;
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

.page-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background-color: #f0ebe5;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-hero p {
    font-size: 1.2rem;
    color: #666;
}

.about-split {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.values-full {
    padding: 6rem 2rem;
    background-color: #f9f7f4;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wide h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 400;
}

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

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

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #4a5d4e;
    font-weight: 500;
}

.value-block p {
    font-size: 1rem;
    color: #666;
}

.artisans-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.artisans-split-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.artisan-profile-left,
.artisan-profile-right {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

.artisan-profile-right {
    flex-direction: row-reverse;
}

.profile-image {
    flex: 1;
    background-color: #e5e0d8;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-text {
    flex: 1;
}

.profile-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.profile-text .location {
    font-size: 0.95rem;
    color: #4a5d4e;
    margin-bottom: 1rem;
}

.profile-text p {
    font-size: 1rem;
    color: #666;
}

.philosophy-statement {
    padding: 6rem 2rem;
    background-color: #f4f1ed;
}

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

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

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

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-price {
    font-size: 1.5rem;
    color: #4a5d4e;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.detail-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

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

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-inline {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background-color: #4a5d4e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #3a4d3e;
}

.process-section {
    padding: 6rem 2rem;
    background-color: #f9f7f4;
}

.process-timeline {
    margin-top: 3rem;
}

.timeline-step {
    margin-bottom: 2.5rem;
}

.timeline-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #4a5d4e;
}

.timeline-step p {
    font-size: 1rem;
    color: #666;
}

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

.contact-info-block,
.contact-details-block {
    flex: 1;
}

.contact-info-block h2,
.contact-details-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

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

.location-detail h3,
.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #4a5d4e;
}

.location-detail p,
.contact-method p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.note {
    font-size: 0.9rem;
    color: #888;
}

.faq-section {
    padding: 6rem 2rem;
    background-color: #f9f7f4;
}

.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #4a5d4e;
}

.faq-item p {
    font-size: 1rem;
    color: #666;
}

.thanks-container {
    padding: 6rem 2rem;
    background-color: #f9f7f4;
    min-height: 70vh;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.confirmation-details {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
    margin: 2.5rem 0;
    text-align: left;
}

.confirmation-details ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.confirmation-details li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #4a4a4a;
}

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

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

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

.thanks-cta {
    margin-top: 3rem;
}

.thanks-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    margin: 0.5rem;
    background-color: transparent;
    color: #4a5d4e;
    border: 2px solid #4a5d4e;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #4a5d4e;
    color: #ffffff;
}

.legal-content {
    padding: 4rem 2rem 6rem;
    background-color: #fdfbf7;
}

.legal-content h1 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #4a5d4e;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

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

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

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

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

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

.cookie-table th {
    background-color: #f0ebe5;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .form-section-split,
    .process-split,
    .about-split,
    .service-detail-item,
    .artisan-profile-left,
    .artisan-profile-right,
    .contact-layout {
        flex-direction: column;
    }

    .intro-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .split-content,
    .form-intro,
    .form-container {
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

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

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