:root {
    --color-primary: #2d4a3e;
    --color-secondary: #8b6914;
    --color-accent: #c49b47;
    --color-dark: #1a1a1a;
    --color-light: #f8f6f2;
    --color-muted: #6b7280;
    --color-bg-alt: #eae6de;
    --color-border: #d4cfc3;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', system-ui, 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);
}

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

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

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

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

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
}

.container {
    width: 100%;
    max-width: var(--max-width-wide);
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 246, 242, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
}

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

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    font-size: 0.95rem;
    color: var(--color-muted);
    transition: color 0.2s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Editorial */
.hero-editorial {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-bg-alt) 100%);
}

.hero-editorial .container-narrow {
    text-align: center;
}

.hero-label {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.hero-editorial h1 {
    font-size: 3.2rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--color-muted);
    max-width: 540px;
    margin: 0 auto 40px;
}

/* Article Content */
.article-section {
    padding: 80px 0;
}

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

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

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

.article-content {
    font-size: 1.1rem;
}

.article-content p {
    margin-bottom: 1.6rem;
}

.article-image {
    margin: 48px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.article-image.portrait img {
    aspect-ratio: 3/4;
}

.article-image figcaption {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--color-muted);
    background: var(--color-light);
    text-align: center;
}

/* Pull Quote */
.pull-quote {
    margin: 56px 0;
    padding: 32px 0;
    border-top: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
}

.pull-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--color-primary);
    text-align: center;
}

/* Inline CTA */
.inline-cta {
    margin: 48px 0;
    padding: 32px;
    background: var(--color-primary);
    border-radius: 8px;
    text-align: center;
}

.inline-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.inline-cta .btn {
    background: var(--color-accent);
    color: var(--color-dark);
}

.inline-cta .btn:hover {
    background: var(--color-secondary);
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background: #1e3328;
    color: white;
}

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

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

.btn-accent {
    background: var(--color-accent);
    color: var(--color-dark);
}

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

.btn-link {
    background: none;
    padding: 0;
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Services Grid */
.services-section {
    padding: 100px 0;
}

.services-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 28px;
}

.service-card h3 {
    margin-bottom: 12px;
}

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.service-price .amount {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary);
}

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

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.testimonial-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.testimonial-item blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

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

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

/* Form Styles */
.form-section {
    padding: 100px 0;
}

.form-wrapper {
    max-width: 560px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 36px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-light);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 74, 62, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

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

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: white;
}

.thanks-content h1 {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.thanks-content p {
    color: var(--color-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* Footer */
.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

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

.footer-col a:hover {
    color: white;
}

.footer-brand {
    flex: 1 1 280px;
}

.footer-brand .nav-logo {
    color: white;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: white;
    padding: 20px 24px;
    z-index: 9999;
    display: none;
}

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

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.cookie-accept {
    background: var(--color-accent);
    color: var(--color-dark);
}

.cookie-accept:hover {
    background: var(--color-secondary);
    color: white;
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    border-color: white;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.sticky-cta .btn {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Legal Pages */
.legal-section {
    padding: 140px 0 80px;
}

.legal-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 32px 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.benefits-list .icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.benefits-list .text strong {
    display: block;
    margin-bottom: 4px;
}

.benefits-list .text p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
}

/* About Page */
.about-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-light) 100%);
}

.about-grid {
    display: flex;
    gap: 48px;
    align-items: center;
}

.about-grid.reverse {
    flex-direction: row-reverse;
}

.about-col {
    flex: 1;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.about-image img {
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Stats */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    padding: 48px 0;
}

.stat-item {
    text-align: center;
    padding: 24px 32px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-primary);
    display: block;
    margin-bottom: 8px;
}

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

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        flex-direction: column;
    }

    .about-grid.reverse {
        flex-direction: column;
    }

    .footer-grid {
        gap: 32px;
    }
}

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

    h2 {
        font-size: 1.6rem;
    }

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

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

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

    .nav-toggle {
        display: block;
    }

    .form-wrapper {
        padding: 32px 24px;
    }

    .article-section {
        padding: 60px 0;
    }

    .services-section {
        padding: 60px 0;
    }

    .pull-quote blockquote {
        font-size: 1.3rem;
    }

    .sticky-cta {
        bottom: 16px;
        right: 16px;
    }

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

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .hero-editorial {
        padding: 140px 0 60px;
    }

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

    .stats-row {
        flex-direction: column;
        gap: 16px;
    }

    .stat-item {
        padding: 16px;
    }
}
