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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #3d2817;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #3d2817;
}

.editorial-content {
    max-width: 100%;
    background-color: #fff;
}

.article-hero {
    position: relative;
    margin-bottom: 64px;
}

.hero-image-wrap {
    width: 100%;
    height: 520px;
    overflow: hidden;
    background-color: #d4c5b9;
}

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

.hero-text {
    max-width: 720px;
    margin: -80px auto 0;
    padding: 48px 32px;
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    position: relative;
    z-index: 10;
}

.hero-text h1 {
    font-size: 38px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.intro-lead {
    font-size: 19px;
    color: #555;
    line-height: 1.6;
}

.story-section {
    padding: 80px 24px;
}

.narrow-column {
    max-width: 680px;
    margin: 0 auto;
}

.narrow-column h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.narrow-column h3 {
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 600;
}

.narrow-column p {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 24px;
    color: #3c3c3c;
}

.inline-image {
    margin: 52px 0;
}

.inline-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #e8dfd7;
}

.image-caption {
    font-size: 14px;
    color: #777;
    margin-top: 12px;
    font-style: italic;
}

.inline-cta {
    background-color: #f5f0eb;
    padding: 32px;
    margin: 48px 0;
    border-left: 4px solid #8b6f47;
}

.cta-text {
    font-size: 19px;
    color: #3d2817;
    font-weight: 600;
    margin: 0;
}

.testimonial-inline {
    margin: 48px 0;
    padding: 32px;
    background-color: #fafafa;
    border-left: 3px solid #d4c5b9;
}

.testimonial-inline blockquote {
    margin: 0;
}

.testimonial-inline p {
    font-size: 18px;
    font-style: italic;
    color: #444;
    margin-bottom: 16px;
}

.testimonial-inline cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.services-reveal {
    background-color: #f9f7f5;
    padding: 80px 24px;
}

.service-card {
    max-width: 880px;
    margin: 0 auto 48px;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: #e0d5cc;
}

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

.service-content {
    padding: 40px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #8b6f47;
    margin-top: 20px;
    margin-bottom: 24px;
}

.select-service {
    background-color: #3d2817;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2a1a0f;
}

.form-container {
    background-color: #f5f0eb;
    padding: 48px;
    margin-top: 40px;
    border: 2px solid #d4c5b9;
}

.form-container h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

#selected-service-price-display {
    font-size: 18px;
    color: #8b6f47;
    font-weight: 600;
    margin-bottom: 32px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #8b6f47;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.disclaimer-text {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-top: 48px;
    padding: 20px;
    background-color: #fafafa;
    border-left: 2px solid #ddd;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 48px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 32px;
}

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

.footer-section h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    color: #555;
    margin: 0;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.contact-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.contact-page h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-page p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 48px;
    padding: 40px;
    background-color: #f5f0eb;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #2c2c2c;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
}

.legal-page h1 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #3c3c3c;
}

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

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.thanks-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 120px 24px;
    text-align: center;
}

.thanks-page h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-page p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.thanks-page .highlight {
    font-size: 20px;
    font-weight: 600;
    color: #8b6f47;
    margin-top: 32px;
}

.services-list-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
}

.services-list-page h1 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a1a1a;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .intro-lead {
        font-size: 17px;
    }

    .narrow-column h2 {
        font-size: 26px;
    }

    .narrow-column h3 {
        font-size: 21px;
    }

    .service-card {
        flex-direction: column;
    }

    .form-container {
        padding: 32px 20px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
}