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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --text-color: #1a1a1a;
    --text-light: #4a4a4a;
    --background: #fefefe;
    --background-alt: #f9f6f2;
    --border-color: #e8e4df;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: var(--text-color);
    background: var(--background);
    font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.editorial-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.brand {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.brand a {
    color: var(--primary-color);
}

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

.nav-links a {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.story-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.story-hero {
    margin-bottom: 4rem;
}

.hero-image-wrapper {
    margin-bottom: 2.5rem;
    overflow: hidden;
    border-radius: 4px;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
}

.story-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.story-subtitle {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1.5rem;
}

.page-hero {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    font-size: 2.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.story-content {
    margin-top: 3rem;
}

.text-block {
    margin-bottom: 2.5rem;
}

.lead-text {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.text-block p {
    margin-bottom: 1.3rem;
}

.text-block ul,
.text-block ol {
    margin-left: 1.5rem;
    margin-bottom: 1.3rem;
}

.text-block li {
    margin-bottom: 0.7rem;
}

.inline-cta {
    text-align: center;
    padding: 2rem 0;
    margin: 2rem 0;
}

.cta-whisper {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
}

.inline-cta-strong {
    text-align: center;
    padding: 2.5rem 0;
    margin: 3rem 0;
}

.cta-link {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 3px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.3s ease;
}

.cta-link:hover {
    background: var(--accent-color);
    color: white;
}

.story-image {
    margin: 3rem 0;
}

.story-image img {
    width: 100%;
    border-radius: 4px;
}

.story-image figcaption {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    margin-top: 0.8rem;
}

.insight-box {
    background: var(--background-alt);
    padding: 2.5rem;
    margin: 3rem 0;
    border-left: 4px solid var(--secondary-color);
}

.insight-box h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.insight-box p {
    margin-bottom: 0;
    color: var(--text-color);
}

.quote-block {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.quote-block blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--primary-color);
    margin: 0;
}

.quote-block cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--text-light);
}

.story-list {
    margin: 3rem 0;
}

.list-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.list-item:last-child {
    border-bottom: none;
}

.list-item h4 {
    margin-top: 0;
    color: var(--secondary-color);
}

.list-item p {
    margin-bottom: 0;
}

.process-narrative {
    margin: 3rem 0;
}

.process-step {
    margin-bottom: 2.5rem;
}

.process-step h4 {
    margin-top: 0;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.testimonial-cluster {
    margin: 3rem 0;
    background: var(--background-alt);
    padding: 2.5rem;
    border-radius: 4px;
}

.testimonial {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.testimonial:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.testimonial p {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial cite {
    font-size: 0.9rem;
    font-style: normal;
    color: var(--text-light);
}

.services-narrative {
    margin: 3rem 0;
}

.service-card {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--background-alt);
    border-radius: 4px;
    border-left: 4px solid var(--secondary-color);
}

.service-card h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.6rem;
}

.service-card p {
    margin-bottom: 1rem;
}

.price-reveal {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price {
    display: inline-block;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-select {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 3px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-select:hover {
    background: var(--accent-color);
}

.form-section {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--background-alt);
    border-radius: 4px;
}

.form-section h2 {
    margin-top: 0;
}

.form-intro {
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 3px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: var(--accent-color);
}

.closing-thought {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 3rem;
}

.contact-info-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--background-alt);
    border-radius: 4px;
}

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

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    margin-top: 0;
    color: var(--secondary-color);
}

.contact-detail p {
    margin-bottom: 0;
    color: var(--text-color);
}

.legal-content {
    font-size: 1rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.3rem;
}

.legal-content li {
    margin-bottom: 0.7rem;
}

.story-footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

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

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 1001;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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: 1.5rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-color);
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--accent-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: var(--secondary-color);
}

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

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

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .story-title {
        font-size: 2.2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .story-container {
        padding: 5rem 1.5rem 3rem;
    }

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

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

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .form-section {
        padding: 2rem 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .story-title {
        font-size: 1.8rem;
    }

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

    .quote-block blockquote {
        font-size: 1.1rem;
    }

    .insight-box {
        padding: 1.5rem;
    }

    .testimonial-cluster {
        padding: 1.5rem;
    }
}
