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

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

.ad-disclosure {
    background-color: #f4f4f4;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #ffffff;
}

.hero-content {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f7f4;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-content p {
    font-size: 18px;
    color: #5a5a5a;
    margin-bottom: 40px;
    max-width: 520px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #6d5638;
}

.intro-section {
    display: flex;
    padding: 120px 80px;
    gap: 80px;
    background-color: #ffffff;
}

.intro-left {
    flex: 1;
    background-color: #e8e3dc;
}

.intro-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.intro-right p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.services-grid {
    padding: 100px 80px;
    background-color: #f5f3f0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 400;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    width: 360px;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px 25px;
    color: #1a1a1a;
    font-weight: 500;
}

.service-card p {
    font-size: 15px;
    color: #5a5a5a;
    margin: 0 25px 20px 25px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    color: #8b6f47;
    margin: 0 25px 20px 25px;
    font-weight: 600;
}

.service-card .select-service {
    padding: 14px 0;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
    margin-top: auto;
}

.service-card .select-service:hover {
    background-color: #8b6f47;
}

.form-section {
    display: flex;
    background-color: #ffffff;
}

.form-container {
    flex: 1;
    padding: 100px 80px;
    background-color: #f9f7f4;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.form-container p {
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: Georgia, serif;
    background-color: #ffffff;
}

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

.contact-form input[readonly] {
    background-color: #f5f5f5;
    color: #8b6f47;
}

.cta-submit {
    padding: 16px;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-submit:hover {
    background-color: #6d5638;
}

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

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

.testimonials-alt {
    padding: 100px 80px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.testimonials-alt h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.testimonial-blocks {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial {
    max-width: 350px;
    padding: 30px;
    background-color: #3a3a3a;
}

.testimonial p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial span {
    font-size: 14px;
    color: #b0b0b0;
}

.process-section {
    display: flex;
    padding: 100px 80px;
    gap: 80px;
    background-color: #ffffff;
}

.process-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.process-text p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.process-visual {
    flex: 1;
    background-color: #e8e3dc;
}

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-footer {
    background-color: #1a1a1a;
    color: #c0c0c0;
    padding: 60px 80px 30px 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 60px;
}

.footer-block h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-block p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-block a {
    display: block;
    color: #c0c0c0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #8b6f47;
}

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #a0a0a0;
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px 80px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: #8b6f47;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: #555;
    color: #ffffff;
}

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

.page-header {
    padding: 80px 80px 60px 80px;
    background-color: #f9f7f4;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 400;
}

.page-header p {
    font-size: 18px;
    color: #5a5a5a;
}

.content-split {
    display: flex;
    padding: 100px 80px;
    gap: 80px;
    background-color: #ffffff;
}

.content-split.reverse {
    flex-direction: row-reverse;
    background-color: #f9f7f4;
}

.content-image {
    flex: 1;
    background-color: #e8e3dc;
}

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

.content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.content-text p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.philosophy-section {
    padding: 100px 80px;
    background-color: #f9f7f4;
}

.philosophy-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 400;
}

.philosophy-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.philosophy-item {
    max-width: 350px;
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 500;
}

.philosophy-item p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
}

.artist-statement {
    padding: 100px 80px;
    background-color: #8b6f47;
    color: #ffffff;
}

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

.statement-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 400;
}

.statement-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.services-detailed {
    padding: 60px 80px;
    background-color: #ffffff;
}

.service-detail {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
}

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

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

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 400;
}

.price-tag {
    font-size: 32px;
    color: #8b6f47;
    margin-bottom: 25px;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 25px 0 15px 0;
    color: #1a1a1a;
    font-weight: 500;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    color: #5a5a5a;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b6f47;
}

.cta-services {
    padding: 80px 80px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #d0d0d0;
}

.contact-layout {
    display: flex;
    background-color: #ffffff;
}

.contact-info-block {
    flex: 1;
    padding: 80px;
    background-color: #f9f7f4;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 400;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 500;
}

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

.contact-note {
    margin-top: 50px;
    padding: 25px;
    background-color: #ffffff;
    border-left: 4px solid #8b6f47;
}

.contact-note p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #e8e3dc;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-placeholder {
    padding: 60px 80px;
    background-color: #ffffff;
}

.map-notice {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.map-notice h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 500;
}

.map-notice p {
    font-size: 16px;
    color: #5a5a5a;
    line-height: 1.7;
}

.thanks-section {
    display: flex;
    min-height: 500px;
    background-color: #ffffff;
}

.thanks-content {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9f7f4;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 400;
}

.thanks-content p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-service {
    background-color: #8b6f47;
    color: #ffffff;
    padding: 20px 25px;
    margin: 25px 0;
    font-size: 16px;
}

.thanks-image {
    flex: 1;
    background-color: #e8e3dc;
}

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

.legal-page {
    padding: 60px 80px 100px 80px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 400;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    color: #2c2c2c;
    font-weight: 500;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: #2c2c2c;
    font-weight: 500;
}

.legal-page p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-url {
    color: #8b6f47;
    word-break: break-all;
}

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #888;
}

@media screen and (max-width: 1024px) {
    .main-nav {
        padding: 20px 40px;
    }

    .hero-split,
    .intro-section,
    .form-section,
    .process-section,
    .content-split,
    .service-detail,
    .contact-layout,
    .thanks-section {
        flex-direction: column;
    }

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

    .services-grid,
    .testimonials-alt,
    .philosophy-section,
    .artist-statement,
    .services-detailed,
    .cta-services,
    .map-placeholder,
    .legal-page {
        padding: 60px 40px;
    }

    .hero-content,
    .form-container,
    .thanks-content,
    .contact-info-block {
        padding: 60px 40px;
    }

    .philosophy-grid {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .testimonial-blocks {
        flex-direction: column;
        align-items: center;
    }
}