:root {
    --color-primary: #c45d3a;
    --color-secondary: #2c3e2d;
    --color-accent: #e8a87c;
    --color-light: #faf7f2;
    --color-dark: #1a1a1a;
    --color-text: #333333;
    --color-muted: #6b6b6b;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', Tahoma, sans-serif;
    --max-width-narrow: 680px;
    --max-width-medium: 920px;
    --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-text);
    background-color: var(--color-light);
}

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

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

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

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;
}

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;
}

.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-secondary);
    font-weight: normal;
}

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

.nav-links a {
    color: var(--color-text);
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    transition: all 0.3s ease;
}

.hero-editorial {
    padding: 10rem 0 5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--color-light) 0%, #fff 100%);
}

.hero-editorial h1 {
    font-size: 3.2rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--color-muted);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.hero-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hero-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.btn-primary {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--color-secondary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-primary);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-size: 1rem;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
}

.btn-inline {
    color: var(--color-primary);
    font-weight: 600;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 2px;
}

.btn-inline:hover {
    border-color: var(--color-primary);
}

.section-story {
    padding: 5rem 0;
}

.section-story-alt {
    padding: 5rem 0;
    background: #fff;
}

.section-story-accent {
    padding: 5rem 0;
    background: var(--color-secondary);
    color: #fff;
}

.section-story-accent h2,
.section-story-accent h3 {
    color: #fff;
}

.section-story-accent a {
    color: var(--color-accent);
}

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

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

.story-content h2 {
    margin-top: 3rem;
}

.inline-image {
    margin: 2.5rem -2rem;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.inline-image-caption {
    font-size: 0.85rem;
    color: var(--color-muted);
    text-align: center;
    padding: 0.75rem;
    background: #f5f5f5;
}

.quote-block {
    border-left: 4px solid var(--color-accent);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    background: rgba(232, 168, 124, 0.1);
    font-style: italic;
    font-size: 1.15rem;
}

.quote-author {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-top: 0.75rem;
}

.cta-inline {
    background: var(--color-light);
    padding: 2.5rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.08);
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

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

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

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

.service-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.testimonial-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #3d5240 100%);
    color: #fff;
}

.testimonial-item {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.testimonial-text {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.8;
}

.form-section {
    padding: 5rem 0;
    background: #fff;
}

.form-container {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.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: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    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: var(--color-primary);
}

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

.form-submit {
    width: 100%;
    padding: 1.2rem;
    margin-top: 1rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta p {
    margin: 0;
    font-size: 1rem;
}

.sticky-cta .btn-primary {
    padding: 0.75rem 2rem;
    background: var(--color-primary);
}

.footer {
    background: var(--color-dark);
    color: #fff;
    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: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

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

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

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

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

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
}

.cookie-text a {
    color: var(--color-accent);
}

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

.cookie-accept {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--color-light) 0%, #fff 100%);
}

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

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

.page-content ul,
.page-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

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

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 3rem;
    color: #fff;
}

.urgency-banner {
    background: var(--color-primary);
    color: #fff;
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
}

.urgency-banner strong {
    font-weight: 600;
}

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

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

.split-image {
    flex: 1 1 50%;
    min-width: 300px;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--color-muted);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-editorial {
        padding: 7rem 0 3rem;
    }

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

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-light);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

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

    .nav-links li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-hamburger {
        display: flex;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }

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

    .stats-row {
        gap: 2rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-col {
        flex: 1 1 100%;
    }
}

.section-services-page {
    padding: 4rem 0;
}

.services-list-full {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-full-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.service-full-content {
    flex: 1 1 400px;
}

.service-full-pricing {
    flex: 0 0 auto;
    text-align: center;
    padding: 1.5rem 2.5rem;
    background: var(--color-light);
    border-radius: 8px;
}
