/* Reset and Base Styles */
* {
    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: #2c2c2c;
    background: #fdfdfb;
}

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

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

a:hover {
    color: #a04530;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #c85a3e;
    color: #fff;
}

.btn-cookie:hover {
    background: #a04530;
}

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

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

/* Navigation */
.nav-minimal {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 900;
}

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

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c2c2c;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #2c2c2c;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #2c2c2c;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #c85a3e;
}

/* Editorial Flow Layout */
.editorial-flow {
    max-width: 100%;
}

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

.content-medium {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Editorial */
.hero-editorial {
    padding: 4rem 0 3rem;
}

.hero-content-narrow {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.hero-editorial h1 {
    font-size: 2.6rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
}

.hero-image {
    margin: 0 auto;
    max-width: 100%;
}

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

/* Story Sections */
.story-intro,
.problem-reveal,
.transformation,
.expertise,
.social-proof,
.method-breakdown,
.final-push {
    padding: 3rem 0;
}

.opening {
    font-size: 1.25rem;
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    border-left: 3px solid #c85a3e;
    padding-left: 1.5rem;
}

.content-narrow p {
    margin-bottom: 1.5rem;
}

.content-narrow h2 {
    font-size: 2rem;
    line-height: 1.4;
    margin: 2.5rem 0 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.content-narrow h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c2c2c;
    font-weight: 600;
}

/* Inline Images */
.inline-image,
.inline-image-small {
    margin: 3rem 0;
}

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

.inline-image-small {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

figcaption {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 0.75rem;
    text-align: center;
}

/* Lists */
.insight-list,
.service-features,
.hours-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.insight-list li,
.service-features li,
.hours-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-inline {
    background: #f9f9f7;
    border-left: 4px solid #c85a3e;
    padding: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
}

.testimonial-inline p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #6a6a6a;
    display: block;
}

.testimonials-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonials-stack blockquote {
    background: #f9f9f7;
    padding: 1.5rem;
    border-left: 3px solid #c85a3e;
}

.testimonials-stack p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.testimonials-stack cite {
    font-size: 0.9rem;
    color: #6a6a6a;
}

/* CTA Elements */
.cta-inline {
    text-align: center;
    margin: 3rem 0;
}

.btn-text-link {
    font-size: 1.1rem;
    color: #c85a3e;
    font-weight: 600;
    text-decoration: underline;
}

.btn-text-link:hover {
    color: #a04530;
}

.cta-section-block {
    background: #2c2c2c;
    color: #fff;
    padding: 4rem 2rem;
    margin: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2,
.cta-content h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-content p {
    color: #e8e8e8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-primary,
.btn-primary-large,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-primary {
    background: #c85a3e;
    color: #fff;
}

.btn-primary:hover {
    background: #a04530;
    color: #fff;
}

.btn-primary-large {
    background: #c85a3e;
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-primary-large:hover {
    background: #a04530;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
}

.btn-secondary:hover {
    background: #2c2c2c;
    color: #fff;
}

/* Urgency Block */
.urgency-block {
    background: #fff3e0;
    border: 2px solid #ffb74d;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.urgency-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e65100;
    margin: 0;
}

/* Service Cards Editorial */
.services-reveal {
    padding: 4rem 0;
}

.service-card-editorial {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 6px;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card-editorial.highlighted {
    border: 2px solid #c85a3e;
    background: #fffbf7;
}

.service-card-editorial.premium {
    background: linear-gradient(to bottom, #fafafa, #fff);
}

.service-number {
    font-size: 0.85rem;
    color: #c85a3e;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #c85a3e;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    font-family: 'Arial', sans-serif;
}

.service-card-editorial h2,
.service-card-editorial h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-intro {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price-reveal {
    font-size: 1.5rem;
    color: #c85a3e;
    font-weight: 700;
    margin: 2rem 0 1.5rem;
    font-family: 'Arial', sans-serif;
}

.price-line {
    font-size: 1.3rem;
    margin: 1.5rem 0;
}

.btn-select-service {
    background: #2c2c2c;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

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

/* Form Section */
.form-section {
    background: #f9f9f7;
    padding: 4rem 0;
    margin: 4rem 0 0;
}

.editorial-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

/* Guarantee Section */
.guarantee {
    background: #e8f5e9;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    border-radius: 6px;
}

.guarantee h3 {
    color: #2e7d32;
    margin-bottom: 1rem;
}

.guarantee p {
    color: #1b5e20;
    margin: 0;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 800;
}

.btn-sticky {
    background: #c85a3e;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(200, 90, 62, 0.3);
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.btn-sticky:hover {
    background: #a04530;
    box-shadow: 0 6px 16px rgba(200, 90, 62, 0.4);
    transform: translateY(-2px);
}

/* Footer */
.footer-simple {
    background: #2c2c2c;
    color: #e8e8e8;
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #e8e8e8;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #c85a3e;
}

.footer-copy {
    font-size: 0.85rem;
    color: #a8a8a8;
}

/* Page Header */
.page-header {
    padding: 4rem 0 2rem;
    text-align: left;
}

.page-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* About Page */
.about-story {
    padding: 2rem 0;
}

/* Services List */
.services-intro {
    padding: 2rem 0;
}

.services-list {
    padding: 2rem 0;
}

.services-faq {
    padding: 3rem 0;
    background: #f9f9f7;
    margin-top: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #4a4a4a;
}

/* Contact Page */
.contact-info {
    padding: 2rem 0;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0;
}

.contact-block h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-block p {
    margin-bottom: 0.75rem;
}

.contact-link {
    font-weight: 600;
    font-size: 1.1rem;
}

address {
    font-style: normal;
    line-height: 1.8;
}

.note {
    font-size: 0.9rem;
    color: #6a6a6a;
    font-style: italic;
}

.visit-info {
    padding: 3rem 0;
    background: #f9f9f7;
    margin-top: 2rem;
}

.visit-cta {
    margin-top: 2rem;
}

.faq-contact {
    padding: 3rem 0;
}

/* Thanks Page */
.thanks-page {
    padding: 4rem 0;
}

.thanks-content {
    text-align: center;
}

.thanks-message {
    margin: 2rem 0;
}

.next-steps {
    background: #f9f9f7;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 6px;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.steps-list {
    padding-left: 1.5rem;
    text-align: left;
}

.steps-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-cta {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #e3f2fd;
    border-radius: 6px;
}

.thanks-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.bonus-content {
    margin-top: 3rem;
    padding: 2rem;
    background: #fff3e0;
    border-radius: 6px;
}

.bonus-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border: 2px dashed #ffb74d;
    border-radius: 6px;
}

.bonus-box h4 {
    color: #e65100;
    margin-bottom: 0.75rem;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

.legal-page section {
    margin-bottom: 2.5rem;
}

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

.legal-page li {
    margin-bottom: 0.75rem;
}

.update-date {
    color: #6a6a6a;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.cookies-table th {
    background: #f9f9f7;
    font-weight: 600;
}

.cookie-preference-section {
    margin-top: 3rem;
    padding: 2rem;
    background: #f9f9f7;
    border-radius: 6px;
}

#reset-cookie-consent {
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 2rem;
        border-bottom: 1px solid #e8e8e8;
        display: none;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-editorial h1 {
        font-size: 2rem;
    }

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

    .content-narrow h2 {
        font-size: 1.6rem;
    }

    .content-narrow {
        padding: 0 1.5rem;
    }

    .cta-content h2,
    .cta-content h3 {
        font-size: 1.5rem;
    }

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

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

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

    .contact-grid {
        gap: 2rem;
    }

    .thanks-nav {
        flex-direction: column;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-editorial h1 {
        font-size: 1.75rem;
    }

    .service-card-editorial {
        padding: 1.5rem;
    }

    .btn-primary,
    .btn-primary-large,
    .btn-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}