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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

.main-nav {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

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

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

.hero-editorial {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #3e2723;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.subheading {
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

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

.story-intro {
    padding: 60px 0;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 300;
}

.story-intro p, .trust-building p, .social-proof p, .collections-reveal p, .final-cta p {
    margin-bottom: 24px;
    font-size: 18px;
}

.story-intro h2, .trust-building h2, .social-proof h2, .collections-reveal h2, .final-cta h2 {
    font-size: 36px;
    margin: 50px 0 30px 0;
    font-weight: 400;
    color: #1a1a1a;
}

.story-intro h3, .trust-building h3 {
    font-size: 28px;
    margin: 40px 0 20px 0;
    font-weight: 400;
    color: #2c2c2c;
}

.inline-image-block {
    margin: 50px 0;
}

.inline-image-block img, .content-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    background-color: #d7ccc8;
    object-fit: cover;
}

.image-caption {
    font-size: 15px;
    font-style: italic;
    color: #666;
    text-align: center;
}

.trust-building {
    padding: 60px 0;
    background: white;
}

.highlight-box {
    background: #f5f5f5;
    border-left: 4px solid #8B4513;
    padding: 25px;
    margin: 40px 0;
}

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

.social-proof {
    padding: 60px 0;
    background: #fafafa;
}

.testimonial-block {
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-left: 3px solid #d7ccc8;
}

.testimonial-block blockquote {
    margin: 0;
}

.testimonial-block p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.collections-reveal {
    padding: 60px 0;
    background: white;
}

.service-card {
    margin: 50px 0;
    background: #fafafa;
    overflow: hidden;
}

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

.service-details {
    padding: 30px;
}

.service-details h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.service-details p {
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #8B4513;
    margin: 25px 0 20px 0;
}

.cta-select {
    background: #2c2c2c;
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: inherit;
}

.cta-select:hover {
    background: #8B4513;
}

.order-form-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.selected-service-display {
    font-size: 18px;
    margin-bottom: 30px;
    padding: 15px;
    background: white;
    border-left: 4px solid #8B4513;
}

.order-form {
    background: white;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
    background: #fafafa;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background: #8B4513;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: inherit;
    width: 100%;
}

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

.final-cta {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.disclaimer-section {
    padding: 40px 0;
    background: #f5f5f5;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.site-footer {
    background: #2c2c2c;
    color: white;
    padding: 50px 0 20px 0;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

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

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

.footer-section a:hover {
    color: white;
}

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

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

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 36px;
    }

    .subheading {
        font-size: 16px;
    }

    .lead-text {
        font-size: 20px;
    }

    .story-intro h2, .trust-building h2, .social-proof h2, .collections-reveal h2 {
        font-size: 28px;
    }

    .nav-container {
        justify-content: center;
    }

    .order-form {
        padding: 30px 20px;
    }
}