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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fefefe;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1.2rem 0;
}

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

.logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c2c2c;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.editorial-content {
    max-width: 100%;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-editorial {
    padding: 4rem 0 3rem;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 4px;
}

.image-caption {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

.editorial-content section {
    margin-bottom: 3rem;
}

.editorial-content h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.editorial-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    margin-top: 2rem;
    font-weight: 600;
    color: #2c2c2c;
}

.editorial-content p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.story-intro,
.story-section,
.philosophy,
.team-section,
.workshop-space,
.values-section,
.closing-section,
.workshop-details,
.trust-building,
.info-section,
.directions-section,
.contact-info,
.thanks-content,
.next-steps,
.additional-info,
.final-thanks {
    padding: 2rem 0;
}

.service-item {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e8e8e8;
}

.service-item:first-child {
    border-top: none;
}

.service-item h3 {
    margin-top: 0;
}

.price-tag {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b6f47;
    margin: 1rem 0;
}

.cta-inline {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 3px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
    display: inline-block;
}

.cta-inline:hover {
    background-color: #8b6f47;
}

.cta-inline-link {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #8b6f47;
    transition: color 0.2s, border-color 0.2s;
}

.cta-inline-link:hover {
    color: #2c2c2c;
    border-color: #2c2c2c;
}

blockquote {
    border-left: 3px solid #8b6f47;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #4a4a4a;
}

blockquote p {
    margin-bottom: 0.5rem;
}

cite {
    font-style: normal;
    font-size: 0.9rem;
    color: #666;
}

.cta-section {
    padding: 3rem 0;
}

.cta-block {
    background-color: #f9f7f4;
    padding: 3rem 2.5rem;
    border-radius: 4px;
    text-align: center;
}

.cta-button {
    background-color: #8b6f47;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 3px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #6f5838;
}

.form-section {
    padding: 3rem 0;
    background-color: #fafafa;
    margin: 3rem 0;
}

.registration-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: #8b6f47;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 3px;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-button:hover {
    background-color: #6f5838;
}

.final-note {
    padding: 2rem 0;
    text-align: center;
}

.site-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    color: #999;
    font-size: 0.85rem;
}

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

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

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

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

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

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

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

.contact-block h2 {
    margin-top: 0;
}

.faq-section {
    padding: 2rem 0;
}

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

.faq-item h3 {
    margin-top: 0;
}

.info-list {
    margin: 1rem 0 1rem 1.5rem;
    line-height: 1.8;
}

.info-list li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.legal-page .legal-content {
    padding: 2rem 0;
}

.legal-page h2 {
    margin-top: 3rem;
}

.legal-page h3 {
    margin-top: 2rem;
}

.thanks-hero h1 {
    color: #8b6f47;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

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

    .lead-text {
        font-size: 1.1rem;
    }

    .editorial-content h2 {
        font-size: 1.5rem;
    }

    .editorial-content h3 {
        font-size: 1.2rem;
    }

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

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

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

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

    .narrow-content {
        padding: 0 1.5rem;
    }

    .cta-block {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 1.7rem;
    }

    .service-item {
        padding: 1.5rem 0;
    }
}
