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

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

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

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background: white;
    border-bottom: 1px solid #eee;
}

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

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

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

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

.editorial-content {
    max-width: 680px;
    margin: 60px auto;
    padding: 0 24px;
}

.story-header {
    margin-bottom: 48px;
}

.story-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.story-intro {
    font-size: 19px;
    color: #555;
    font-style: italic;
}

.inline-image {
    margin: 48px 0;
    background-color: #e8e8e8;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-section {
    margin: 40px 0;
}

.story-section h2 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #2c2c2c;
}

.story-section p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #444;
}

.inline-cta-box {
    background: #f9f6f1;
    border-left: 4px solid #c17f3e;
    padding: 24px;
    margin: 40px 0;
}

.inline-cta-box p {
    font-size: 17px;
    margin: 0;
}

.text-cta {
    color: #c17f3e;
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
}

.text-cta:hover {
    color: #a06730;
}

.testimonial-inline {
    border-left: 3px solid #c17f3e;
    padding-left: 28px;
    margin: 48px 0;
    font-size: 18px;
    font-style: italic;
    color: #555;
}

.testimonial-inline cite {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    font-style: normal;
    color: #888;
}

.services-inline {
    margin: 48px 0;
}

.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    margin-bottom: 32px;
    padding: 24px;
    background-color: #fff;
}

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.service-card .price {
    font-size: 22px;
    font-weight: 600;
    color: #c17f3e;
    margin: 16px 0;
}

.select-service-btn {
    background: #2c2c2c;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #c17f3e;
}

.order-form {
    background: #f9f6f1;
    padding: 40px;
    margin: 48px 0;
    border: 1px solid #e0d5c7;
}

.order-form h3 {
    font-size: 26px;
    margin-bottom: 28px;
    color: #2c2c2c;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: Georgia, serif;
}

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

.submit-btn {
    background: #c17f3e;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #a06730;
}

.disclaimer-section {
    margin: 48px 0;
    padding: 24px;
    background: #f4f4f4;
    border: 1px solid #ddd;
}

.disclaimer-section small {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.site-footer {
    background: #2c2c2c;
    color: #ccc;
    padding: 48px 40px 24px;
    margin-top: 80px;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 18px;
}

.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: #c17f3e;
}

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

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

.cookie-banner.show {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

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

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

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

.cookie-btn.accept {
    background: #c17f3e;
    color: white;
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.thanks-message {
    text-align: center;
    padding: 80px 24px;
}

.thanks-message h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.thanks-message p {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto 16px;
}

.thanks-message .selected-service {
    font-size: 20px;
    color: #c17f3e;
    font-weight: 600;
    margin: 24px 0;
}

@media (max-width: 768px) {
    .minimal-nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .editorial-content {
        margin: 40px auto;
    }

    .story-header h1 {
        font-size: 32px;
    }

    .order-form {
        padding: 24px;
    }

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

    .cookie-banner.show {
        flex-direction: column;
    }
}