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

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

.ad-notice {
    background-color: #f4f1ea;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0ddd5;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.hero-visual {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #d4c4b0;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 700px;
}

.hero-overlay h1 {
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    font-weight: normal;
}

.hero-overlay p {
    font-size: 20px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.story-intro {
    padding: 80px 20px;
    background-color: #fff;
}

.narrow-content {
    max-width: 650px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.9;
}

.narrow-content p {
    margin-bottom: 24px;
}

.visual-break {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e8e3da;
}

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

.problem-reveal {
    padding: 90px 40px;
    background-color: #f7f5f2;
}

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

.content-block h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: normal;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 20px;
}

.insight-section {
    padding: 100px 40px;
    background-color: #fff;
}

.split-layout {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: normal;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 18px;
}

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

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

.trust-builder {
    padding: 90px 40px;
    background-color: #faf8f5;
}

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

.content-centered h2 {
    font-size: 34px;
    margin-bottom: 28px;
    text-align: center;
    font-weight: normal;
}

.content-centered p {
    font-size: 17px;
    margin-bottom: 20px;
}

.ingredients-list {
    list-style: none;
    margin: 30px 0;
}

.ingredients-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e8e4dc;
    font-size: 17px;
}

.note {
    font-size: 15px;
    color: #666;
    font-style: italic;
    margin-top: 30px;
}

.testimonial-visual {
    padding: 100px 40px;
    background-color: #8b7355;
    color: #fff;
}

.testimonial-visual blockquote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-visual p {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-visual cite {
    font-size: 16px;
    font-style: normal;
}

.visual-break-two {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background-color: #e0d8cc;
}

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

.how-it-works {
    padding: 90px 40px;
    background-color: #fff;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.step {
    padding: 30px;
    background-color: #f9f7f4;
    border-left: 4px solid #8b7355;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: normal;
}

.step p {
    font-size: 16px;
}

.services-preview {
    padding: 90px 40px;
    background-color: #f4f1ec;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: normal;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background-color: #fff;
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

.service-card h3 {
    font-size: 20px;
    margin: 20px 20px 10px;
    font-weight: normal;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 20px;
    color: #555;
}

.service-card .price {
    font-size: 24px;
    font-weight: bold;
    color: #8b7355;
    margin: 20px;
}

.cta-form-section {
    padding: 100px 40px;
    background-color: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    font-weight: normal;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-form label {
    font-size: 15px;
    color: #444;
}

.order-form select,
.order-form input,
.order-form textarea {
    padding: 12px;
    font-size: 15px;
    border: 1px solid #d0ccc4;
    background-color: #fafaf8;
    font-family: inherit;
}

.order-form select:focus,
.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.btn-submit {
    padding: 16px 32px;
    font-size: 17px;
    background-color: #8b7355;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: inherit;
}

.btn-submit:hover {
    background-color: #705d46;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f9f7f4;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 60px 40px 30px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #fff;
    font-weight: normal;
}

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

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    font-size: 13px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

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

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

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

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

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
    font-family: inherit;
}

.btn-cookie.accept {
    background-color: #8b7355;
    color: #fff;
}

.btn-cookie.accept:hover {
    background-color: #705d46;
}

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

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

.page-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.about-story {
    padding: 90px 40px;
    background-color: #fff;
}

.about-story h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: normal;
}

.values-section {
    padding: 90px 40px;
    background-color: #f7f5f2;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 30px);
    min-width: 250px;
    padding: 30px;
    background-color: #fff;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: normal;
}

.value-item p {
    font-size: 16px;
    color: #555;
}

.workshop-info {
    padding: 90px 40px;
    background-color: #fff;
}

.team-section {
    padding: 90px 40px;
    background-color: #faf8f5;
}

.services-detail {
    padding: 60px 20px;
}

.service-full {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 80px;
    align-items: center;
}

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

.service-image-large {
    flex: 1;
    background-color: #d9d0c4;
}

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

.service-text {
    flex: 1;
    padding: 20px;
}

.service-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: normal;
}

.price-large {
    font-size: 28px;
    font-weight: bold;
    color: #8b7355;
    margin-bottom: 20px;
}

.service-text p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 24px;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e8e4dc;
    font-size: 15px;
}

.contact-info {
    padding: 90px 40px;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.contact-col {
    flex: 1;
}

.contact-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: normal;
}

.contact-col p {
    font-size: 16px;
    margin-bottom: 12px;
}

.contact-email {
    color: #2c2c2c;
    font-weight: bold;
}

.visit-note {
    padding: 90px 40px;
    background-color: #f7f5f2;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
}

.thanks-box h1 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: normal;
}

.thanks-box p {
    font-size: 18px;
    margin-bottom: 20px;
}

.thanks-box .btn-home {
    display: inline-block;
    padding: 14px 30px;
    background-color: #8b7355;
    color: #fff;
    text-decoration: none;
    margin-top: 30px;
    transition: background-color 0.3s;
}

.thanks-box .btn-home:hover {
    background-color: #705d46;
}

.legal-page {
    padding: 80px 40px;
    background-color: #fff;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: normal;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: normal;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: normal;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 16px 0 16px 30px;
}

.legal-content ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .split-layout {
        flex-direction: column;
    }

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

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

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

    .hero-overlay h1 {
        font-size: 32px;
    }

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

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

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

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