/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

a {
    color: #8b6f47;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5c4a30;
}

/* NAVIGATION - MINIMAL STYLE */
.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: bold;
    color: #2a2a2a;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-size: 0.95rem;
    color: #555;
    text-transform: lowercase;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

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

/* EDITORIAL CONTAINER - NARROW CENTERED */
.editorial-container {
    max-width: 680px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

.editorial-header {
    margin-bottom: 3rem;
    text-align: center;
}

.story-title {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.story-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 300;
    line-height: 1.5;
}

/* EDITORIAL IMAGES */
.editorial-image-full {
    margin: 3rem 0;
    width: 100%;
}

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

.editorial-image-inline {
    margin: 2.5rem 0;
}

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

.editorial-image-inline figcaption {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    text-align: center;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

/* STORY SECTIONS */
.story-section {
    margin-bottom: 3rem;
}

.story-lead {
    font-size: 1.3rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    color: #333;
}

.story-section p {
    margin-bottom: 1.4rem;
    font-size: 1.1rem;
}

.section-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    line-height: 1.3;
}

/* INLINE CTA - SOFT STYLE */
.inline-cta-box {
    margin: 3rem 0;
    padding: 2rem;
    background: #f5f2ed;
    border-left: 4px solid #8b6f47;
    text-align: center;
}

.cta-whisper {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.cta-link-soft {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: #8b6f47;
    color: #fff;
    border-radius: 3px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.cta-link-soft:hover {
    background: #5c4a30;
    color: #fff;
}

/* HIGHLIGHT BOX - TESTIMONIALS */
.highlight-box {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 4px;
    margin: 2.5rem 0;
}

.highlight-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b6f47;
    margin-bottom: 1rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
}

.values-list {
    list-style: none;
    margin-top: 1.5rem;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.values-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-size: 1.5rem;
}

/* STEPS LIST */
.story-steps {
    list-style: none;
    counter-reset: step-counter;
    margin: 2rem 0;
}

.story-steps li {
    counter-increment: step-counter;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    font-size: 1.05rem;
}

.story-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #8b6f47;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
}

/* SERVICES PREVIEW CARDS */
.services-preview-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.service-card-editorial {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 1.5rem;
    border-radius: 4px;
}

.service-card-editorial h4 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #2a2a2a;
}

.service-card-editorial p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* PRICING REVEAL */
.pricing-reveal {
    margin: 4rem 0;
    padding: 2.5rem 0;
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.pricing-intro {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
}

.price-list-editorial {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2a2a2a;
}

.price-detail {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.price-value {
    font-size: 1.4rem;
    font-weight: bold;
    color: #8b6f47;
    margin-top: 0.5rem;
}

/* FORM SECTION */
.form-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.form-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-family: 'Helvetica', 'Arial', sans-serif;
    background: #fafafa;
    transition: border 0.3s ease;
}

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

.btn-submit-editorial {
    padding: 1rem 2rem;
    background: #8b6f47;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Helvetica', 'Arial', sans-serif;
    transition: background 0.3s ease;
}

.btn-submit-editorial:hover {
    background: #5c4a30;
}

/* FINAL THOUGHT */
.final-thought {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.closing-text {
    font-size: 1.4rem;
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* SERVICES DETAILED PAGE */
.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.service-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.service-text-box h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #444;
}

.service-use-case {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
    font-style: italic;
}

.service-price {
    font-size: 1.1rem;
    margin: 1rem 0;
    color: #8b6f47;
}

/* CONTACT INFO */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
}

.contact-block {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 4px;
}

.contact-block h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2a2a2a;
}

.contact-value {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0.8rem;
}

.contact-value a {
    color: #8b6f47;
}

.contact-note {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.5;
    margin-top: 1rem;
    font-style: italic;
}

.simple-list {
    list-style: none;
    margin: 1.5rem 0;
}

.simple-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.simple-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8b6f47;
}

/* THANKS PAGE */
.thanks-page {
    text-align: center;
}

.thanks-service-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f5f2ed;
    border-radius: 4px;
    font-size: 1.1rem;
    color: #555;
}

/* LEGAL PAGES */
.legal-page h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

/* FOOTER - MINIMAL */
.footer-minimal {
    background: #2a2a2a;
    color: #ccc;
    padding: 3rem 5% 1.5rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    text-align: center;
}

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

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2a2a2a;
    color: #fff;
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

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

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

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

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

.btn-accept:hover {
    background: #5c4a30;
}

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

.btn-reject:hover {
    background: #3a3a3a;
}

/* RESPONSIVE - MOBILE FIRST */
@media (min-width: 768px) {
    .story-title {
        font-size: 3.2rem;
    }

    .editorial-container {
        padding: 4rem 2rem 6rem;
    }

    .service-block {
        flex-direction: row;
        gap: 2rem;
    }

    .service-block.reverse {
        flex-direction: row-reverse;
    }

    .service-image-box {
        flex: 0 0 45%;
    }

    .service-text-box {
        flex: 1;
    }

    .contact-info-section {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-block {
        flex: 1 1 calc(50% - 1.25rem);
    }
}

@media (max-width: 767px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

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

    .story-subtitle {
        font-size: 1.1rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
