/* 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: #2a2a2a;
    background-color: #fefefe;
}

/* Typography - Editorial Style */
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
}

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

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: #a03b28;
    text-decoration: underline;
}

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e8e8;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
    text-decoration: none;
}

.logo:hover {
    color: #c74c37;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #4a4a4a;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #c74c37;
    text-decoration: none;
}

/* Editorial Content Container - Narrow Centered */
.editorial-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

/* Hero Section - Editorial Style */
.article-header {
    margin-bottom: 3rem;
}

.hero-image {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-bottom: 2rem;
}

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

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

/* Content Blocks - Story Flow */
.content-block {
    margin-bottom: 3rem;
}

.content-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Inline Images - Editorial Style */
.inline-image {
    margin: 2.5rem 0;
}

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

.inline-image.full-width {
    width: calc(100% + 4rem);
    margin-left: -2rem;
}

/* Highlight Sections */
.highlight-section {
    background: #f8f5f2;
    padding: 2.5rem 2rem;
    margin: 3rem -2rem;
}

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

/* Ritual Stories */
.ritual-story {
    padding: 2rem 0;
    border-top: 1px solid #e8e8e8;
}

.ritual-story:last-of-type {
    border-bottom: 1px solid #e8e8e8;
}

/* Blockquotes */
blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #c74c37;
    background: #f8f5f2;
}

cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: normal;
    color: #6a6a6a;
}

/* Testimonials - Editorial Style */
.testimonial-section {
    margin: 3rem 0;
}

.testimonial {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #e8e8e8;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    color: #3a3a3a;
}

.testimonial cite {
    font-size: 0.95rem;
    color: #6a6a6a;
}

/* Inline CTAs - Story Flow */
.inline-cta {
    margin: 2rem 0;
    text-align: center;
}

.cta-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #c74c37;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    display: inline-block;
    padding: 0.5rem 0;
}

.cta-link:hover {
    color: #a03b28;
}

.cta-link-large {
    font-size: 1.3rem;
    font-weight: 700;
    color: #c74c37;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid #c74c37;
    transition: all 0.3s ease;
}

.cta-link-large:hover {
    background: #c74c37;
    color: #fff;
    text-decoration: none;
}

/* Service Cards - Editorial Adapted */
.service-cards {
    margin: 3rem 0;
}

.service-card {
    background: #f8f5f2;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.service-card.featured {
    background: #2a2a2a;
    color: #fff;
}

.service-card.featured h3,
.service-card.featured p {
    color: #fff;
}

.badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: #c74c37;
    color: #fff;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 1.5rem 0 1rem;
    color: #c74c37;
}

.service-card.featured .price {
    color: #fff;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #c74c37;
    color: #fff;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #a03b28;
    text-decoration: none;
    color: #fff;
}

.btn-large {
    display: inline-block;
    background: #2a2a2a;
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    transition: background 0.3s ease;
}

.btn-large:hover {
    background: #1a1a1a;
    text-decoration: none;
    color: #fff;
}

/* Urgency Section */
.urgency-section {
    background: #fff8f5;
    border: 2px solid #c74c37;
    padding: 2.5rem 2rem;
    margin: 3rem -2rem;
}

/* Forms - Editorial Style */
.editorial-form {
    background: #f8f5f2;
    padding: 2.5rem 2rem;
    margin: 2rem 0;
}

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

label {
    display: block;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    font-family: Georgia, serif;
    border: 2px solid #d8d8d8;
    background: #fff;
    transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #c74c37;
}

textarea {
    resize: vertical;
}

.btn-submit {
    background: #c74c37;
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

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

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

.btn-sticky {
    display: inline-block;
    background: #c74c37;
    color: #fff;
    padding: 1rem 2rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #a03b28;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #fff;
}

/* Services Page Specific */
.services-detailed {
    margin: 3rem 0;
}

.service-detail {
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 2px solid #e8e8e8;
}

.service-detail:first-child {
    border-top: none;
}

.service-header {
    margin-bottom: 2rem;
}

.service-duration {
    font-size: 1rem;
    color: #6a6a6a;
    font-style: italic;
}

.service-description ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.service-description li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.service-price-block {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #d8d8d8;
    text-align: center;
}

.price-large {
    font-size: 3rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    color: #c74c37;
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.95rem;
    color: #6a6a6a;
    margin-bottom: 1.5rem;
}

.featured-service {
    background: #2a2a2a;
    color: #fff;
    padding: 3rem 2rem;
    margin: 4rem -2rem;
    position: relative;
}

.featured-service h2,
.featured-service h3,
.featured-service p,
.featured-service li {
    color: #fff;
}

.featured-service .price-large {
    color: #fff;
}

.featured-service .btn-primary {
    background: #fff;
    color: #2a2a2a;
}

.featured-service .btn-primary:hover {
    background: #f0f0f0;
}

.badge-large {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: #c74c37;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* About Page */
.team-section {
    margin: 3rem 0;
}

.team-member {
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e8e8e8;
}

.team-role {
    font-size: 1rem;
    color: #6a6a6a;
    font-style: italic;
    margin-bottom: 1rem;
}

.result-stat {
    margin: 2rem 0;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    color: #c74c37;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-note {
    font-size: 0.85rem;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 2rem;
}

/* Contact Page */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info,
.contact-form-container {
    flex: 1;
}

.contact-detail {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #e8e8e8;
}

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

.field-note {
    font-size: 0.85rem;
    color: #6a6a6a;
    margin-top: 0.3rem;
}

.faq-section {
    margin: 4rem 0;
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #e8e8e8;
}

.faq-item h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

/* Thanks Page */
.thanks-page {
    text-align: center;
}

.thanks-container {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-header {
    margin-bottom: 3rem;
}

.thanks-page .content-block {
    text-align: left;
}

.next-steps {
    margin: 3rem 0;
}

.step {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f5f2;
}

.step h3 {
    margin-top: 0;
}

.exercise-box {
    background: #fff8f5;
    border-left: 4px solid #c74c37;
    padding: 2rem;
    margin: 2rem 0;
}

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

.resource-links li {
    margin: 1rem 0;
}

.final-message {
    margin: 3rem 0;
    font-style: italic;
    color: #4a4a4a;
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
}

.page-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e8e8e8;
}

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

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

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

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #d8d8d8;
}

.cookie-table th {
    background: #f8f5f2;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(42, 42, 42, 0.97);
    color: #fff;
    padding: 1.5rem;
    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;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #a03b28;
}

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

.btn-reject:hover {
    background: #fff;
    color: #2a2a2a;
}

/* Footer */
.main-footer {
    background: #2a2a2a;
    color: #d8d8d8;
    padding: 3rem 2rem 2rem;
    margin-top: 5rem;
}

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

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

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

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #d8d8d8;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #4a4a4a;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #8a8a8a;
    margin: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .contact-layout {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 1rem;
    }

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

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .lead {
        font-size: 1.15rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .editorial-content {
        padding: 2rem 1.5rem 4rem;
    }

    .hero-image,
    .inline-image.full-width {
        width: calc(100% + 3rem);
        margin-left: -1.5rem;
    }

    .highlight-section,
    .urgency-section {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

    .featured-service {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2.5rem 1.5rem;
    }

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

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

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
        text-align: center;
    }

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

    .stat-number {
        font-size: 3rem;
    }

    .price-large {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .editorial-content {
        padding: 1.5rem 1rem 3rem;
    }

    .hero-image,
    .inline-image.full-width {
        width: calc(100% + 2rem);
        margin-left: -1rem;
    }

    .highlight-section,
    .urgency-section,
    .featured-service {
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 1.5rem 1rem;
    }

    blockquote {
        padding: 1rem 1.5rem;
        font-size: 1.15rem;
    }
}