/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5a4f;
    --secondary-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #777;
    --bg-light: #fafaf8;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --accent-color: #c17a53;
}

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

/* Editorial Layout - Narrow Centered */
.editorial-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

/* Navigation - Editorial Style */
.nav-editorial {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 16px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Typography - Editorial */
h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

h2 {
    font-size: 36px;
    line-height: 1.3;
    font-weight: 600;
    margin: 60px 0 25px;
    color: var(--text-dark);
}

h3 {
    font-size: 26px;
    line-height: 1.4;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

p {
    margin-bottom: 25px;
    color: var(--text-medium);
}

.intro-large {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-medium);
    font-weight: 400;
}

/* Hero - Editorial */
.hero-editorial {
    max-width: 680px;
    width: 100%;
    padding: 80px 20px 40px;
    margin: 0 auto;
}

.hero-text-narrow {
    margin-bottom: 50px;
}

.hero-image-inline {
    width: 100%;
    margin-bottom: 40px;
}

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

/* Page Header */
.page-header-narrow {
    max-width: 680px;
    width: 100%;
    padding: 80px 20px 20px;
    margin: 0 auto;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.header-subtitle {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 400;
}

/* Images and Visual Breaks */
.visual-break {
    width: 100%;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.visual-break img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption-group {
    margin: 50px 0;
}

.image-caption-group img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.caption {
    font-size: 15px;
    font-style: italic;
    color: var(--text-light);
    text-align: center;
}

/* Quotes */
.editorial-quote {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
    padding-left: 30px;
    margin: 50px 0;
}

/* Lists */
.editorial-list {
    margin: 30px 0 30px 30px;
    list-style: none;
}

.editorial-list li {
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    color: var(--text-medium);
}

.editorial-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* CTAs - Inline */
.inline-cta {
    margin: 40px 0;
    text-align: center;
}

.cta-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 3px;
    transition: opacity 0.3s;
}

.cta-link:hover {
    opacity: 0.7;
}

.inline-cta-subtle {
    font-size: 19px;
    text-align: center;
    margin: 50px 0;
}

.inline-cta-subtle a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* CTA Section */
.cta-section-inline {
    width: 100%;
    background: var(--bg-light);
    padding: 80px 20px;
    margin: 80px 0;
}

.cta-box {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h3 {
    margin-top: 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.btn-primary:hover {
    background: #234539;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-text {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 17px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.btn-text:hover {
    opacity: 0.7;
}

/* Service Preview Cards */
.service-preview-card {
    background: var(--bg-light);
    padding: 40px;
    margin: 40px 0;
    border-left: 3px solid var(--primary-color);
}

.service-preview-card h3 {
    margin-top: 0;
}

.price-inline {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Services Page */
.services-editorial {
    width: 100%;
}

.service-item {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-content {
    flex: 1;
}

.service-description {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.service-list {
    list-style: none;
    margin: 25px 0 25px 20px;
}

.service-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: var(--text-medium);
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 22px;
}

.service-pricing {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.price-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: -10px;
    margin-bottom: 20px;
}

.btn-select-service {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 35px;
    text-decoration: none;
    font-size: 17px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

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

.service-image {
    width: 100%;
}

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

.comparison-section {
    background: var(--bg-light);
    padding: 80px 20px;
    margin: 80px 0;
    text-align: center;
}

/* Contact Page */
.contact-info-section {
    margin: 50px 0;
}

.contact-item {
    margin: 40px 0;
}

.contact-item h3 {
    margin-top: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.contact-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

.inline-divider {
    height: 1px;
    background: var(--border-color);
    margin: 60px 0;
}

.faq-section {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

/* Forms - Editorial */
.form-section-editorial {
    width: 100%;
    background: var(--bg-light);
    padding: 80px 20px;
    margin: 80px 0;
}

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

.form-editorial {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Testimonials */
.testimonial-inline {
    background: var(--bg-light);
    padding: 50px;
    margin: 60px 0;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 17px;
    color: var(--text-light);
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Philosophy Section */
.philosophy-section {
    margin: 40px 0;
}

.philosophy-section h3 {
    margin-top: 0;
}

.closing-thought {
    font-size: 22px;
    line-height: 1.7;
    text-align: center;
    color: var(--text-dark);
    margin: 60px 0;
    font-style: italic;
}

/* Thanks Page */
.thanks-page-content {
    width: 100%;
    padding: 80px 20px;
}

.thanks-container {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.thanks-main-text {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 30px 0;
}

.thanks-next-steps {
    margin: 60px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    text-align: center;
    margin-top: 0;
}

.steps-list {
    list-style: none;
    margin: 30px 0;
}

.steps-list li {
    margin-bottom: 20px;
    padding-left: 15px;
    line-height: 1.6;
}

.thanks-actions {
    margin: 50px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.thanks-additional {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}

.text-link:hover {
    opacity: 0.7;
}

/* Legal Pages */
.legal-page {
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.legal-date {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

.legal-content {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 50px;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-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;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--bg-white);
}

.cookie-content a {
    color: var(--bg-white);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 30px;
    margin-top: 100px;
}

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

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

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--bg-white);
    font-size: 18px;
}

.footer-section p {
    color: #aaa;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

.footer-section a {
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    color: #888;
    font-size: 14px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Responsive - Mobile First */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    .intro-large {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .nav-container {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 15px;
    }

    .content-narrow {
        padding: 40px 20px;
    }

    .hero-editorial {
        padding: 50px 20px 30px;
    }

    .service-preview-card {
        padding: 30px 20px;
    }

    .editorial-quote {
        font-size: 20px;
        padding-left: 20px;
    }

    .price {
        font-size: 36px;
    }

    .service-item {
        padding: 0 15px;
    }

    .testimonial-inline {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 19px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .btn-secondary {
        margin-left: 0;
    }

    .cookies-table {
        font-size: 14px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 8px 5px;
    }
}

@media (min-width: 769px) {
    .service-item {
        flex-direction: row;
    }

    .service-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .service-content {
        flex: 1.5;
    }

    .service-image {
        flex: 1;
    }
}