:root {
    --color-primary: #c45d35;
    --color-secondary: #2d4a3e;
    --color-accent: #e8b86d;
    --color-dark: #1a1a1a;
    --color-light: #faf8f5;
    --color-muted: #6b6b6b;
    --color-border: #e0dcd5;
    --color-card-bg: #ffffff;
    --color-overlay: rgba(26, 26, 26, 0.7);
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --max-width-narrow: 720px;
    --max-width-medium: 960px;
    --max-width-wide: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: normal;
    line-height: 1.3;
    color: var(--color-dark);
}

h1 { font-size: 2.8rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.6rem; margin-bottom: 1rem; }
h4 { font-size: 1.3rem; margin-bottom: 0.8rem; }

p { margin-bottom: 1.2rem; }

.container-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-medium {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.ad-disclosure {
    background-color: var(--color-secondary);
    color: var(--color-light);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

header {
    background-color: var(--color-card-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: var(--max-width-wide);
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-dark);
}

.logo span {
    color: var(--color-primary);
}

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

nav a {
    color: var(--color-dark);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s ease;
}

nav a:hover,
nav a.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-dark);
}

.hero-editorial {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-editorial .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
}

.hero-editorial .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-editorial .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-light);
    padding: 3rem 1.5rem;
    max-width: var(--max-width-medium);
}

.hero-editorial h1 {
    color: var(--color-light);
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

.hero-editorial .tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.btn-primary:hover {
    background-color: #a84d2b;
    color: var(--color-light);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-light);
}

.btn-secondary:hover {
    background-color: #1f3830;
    color: var(--color-light);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--color-card-bg);
}

.section-dark {
    background-color: var(--color-secondary);
    color: var(--color-light);
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-light);
}

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

.editorial-intro h2 {
    position: relative;
    display: inline-block;
}

.editorial-intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}

.story-block {
    margin-bottom: 3rem;
}

.story-block p {
    font-size: 1.1rem;
}

.story-image {
    margin: 2.5rem 0;
    background-color: var(--color-border);
    border-radius: 8px;
    overflow: hidden;
}

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

.story-image.float-left {
    float: left;
    width: 45%;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.story-image.float-right {
    float: right;
    width: 45%;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 300px;
    max-width: 380px;
    background-color: var(--color-card-bg);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-card-image {
    height: 200px;
    background-color: var(--color-border);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-card h3 {
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-price span {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.inline-cta {
    background-color: var(--color-accent);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.inline-cta h3 {
    margin-bottom: 1rem;
}

.inline-cta p {
    margin-bottom: 1.5rem;
}

.testimonial-section {
    background-color: var(--color-secondary);
    padding: 4rem 0;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 280px;
    max-width: 350px;
    background-color: var(--color-card-bg);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-card blockquote {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-border);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info strong {
    display: block;
    color: var(--color-dark);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.form-section {
    background-color: var(--color-light);
}

.form-container {
    background-color: var(--color-card-bg);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: var(--color-light);
    transition: border-color 0.2s ease;
}

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

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    min-width: 200px;
}

.split-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.split-content {
    flex: 1 1 50%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1 1 50%;
    background-color: var(--color-border);
    min-height: 400px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    color: var(--color-light);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.disclaimer {
    background-color: var(--color-border);
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1 1 60%;
    font-size: 0.95rem;
}

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

.cookie-buttons .btn {
    padding: 0.7rem 1.5rem;
}

.page-header {
    background-color: var(--color-secondary);
    padding: 4rem 0;
    text-align: center;
    color: var(--color-light);
}

.page-header h1 {
    color: var(--color-light);
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
    margin: 0;
}

.content-page {
    padding: 4rem 0;
}

.content-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.content-page h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.content-page ul,
.content-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-page li {
    margin-bottom: 0.5rem;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-item {
    flex: 1 1 250px;
    background-color: var(--color-card-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-info-item h3 {
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: var(--color-muted);
    margin: 0;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
}

.thanks-content {
    max-width: 500px;
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    flex: 1 1 200px;
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.value-item h4 {
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--color-muted);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }

    .header-inner {
        padding: 0.8rem 1rem;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-card-bg);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-border);
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        border-bottom: 1px solid var(--color-border);
    }

    nav a {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-editorial {
        min-height: 50vh;
    }

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

    .section {
        padding: 3rem 0;
    }

    .story-image.float-left,
    .story-image.float-right {
        float: none;
        width: 100%;
        margin: 1.5rem 0;
    }

    .split-section {
        flex-direction: column;
    }

    .split-content {
        padding: 2.5rem 1.5rem;
    }

    .split-image {
        min-height: 300px;
    }

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

    .footer-grid {
        gap: 2rem;
    }

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