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

:root {
    --primary: #2c5f7c;
    --secondary: #d4915d;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f2;
    --bg-white: #ffffff;
    --accent: #8b4513;
    --border: #e0ddd7;
}

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

.editorial-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.editorial-wide {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    padding: 48px 0 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 48px;
}

.site-title {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 12px;
}

.site-tagline {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
    margin-bottom: 32px;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

nav a {
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

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

.article-header {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border);
}

.article-title {
    font-size: 42px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.article-subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: var(--text-light);
    font-style: italic;
    font-weight: 300;
}

.article-meta {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.content-block {
    margin-bottom: 42px;
}

.content-block p {
    margin-bottom: 24px;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 56px 0 24px;
    color: var(--text-dark);
}

.content-block h3 {
    font-size: 24px;
    font-weight: 400;
    margin: 42px 0 18px;
    color: var(--primary);
}

.inline-image {
    margin: 48px 0;
    width: 100%;
}

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

.image-caption {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
    text-align: center;
}

.pullquote {
    margin: 48px 0;
    padding: 32px 48px;
    border-left: 4px solid var(--secondary);
    background: var(--bg-light);
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    color: var(--primary);
}

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background: var(--secondary);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 2px;
    transition: background 0.3s;
    margin: 8px 0;
}

.cta-inline:hover {
    background: var(--accent);
}

.cta-block {
    margin: 56px 0;
    padding: 48px;
    background: var(--bg-light);
    text-align: center;
}

.cta-block h3 {
    font-size: 28px;
    margin: 0 0 16px 0;
    color: var(--primary);
}

.cta-block p {
    margin-bottom: 24px;
    font-size: 18px;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    padding: 16px 42px;
    background: var(--primary);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--accent);
}

.service-card {
    margin: 32px 0;
    padding: 32px;
    background: var(--bg-white);
    border: 1px solid var(--border);
}

.service-card h3 {
    font-size: 26px;
    margin: 0 0 16px 0;
    color: var(--primary);
}

.service-description {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    margin: 16px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-details {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 12px;
}

.form-section {
    margin: 56px 0;
    padding: 48px;
    background: var(--bg-light);
}

.form-section h2 {
    font-size: 32px;
    margin: 0 0 32px 0;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: background 0.3s;
}

.form-submit:hover {
    background: var(--accent);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

.sticky-cta-text {
    color: var(--bg-white);
    margin-right: 24px;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.sticky-cta-button {
    padding: 12px 28px;
    background: var(--secondary);
    color: var(--bg-white);
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: none;
    cursor: pointer;
}

.sticky-cta-button:hover {
    background: var(--accent);
}

.testimonial {
    margin: 48px 0;
    padding: 36px;
    background: var(--bg-white);
    border-left: 3px solid var(--secondary);
}

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

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.contact-info {
    margin: 32px 0;
    padding: 32px;
    background: var(--bg-light);
}

.contact-info h3 {
    font-size: 22px;
    margin: 0 0 16px 0;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 17px;
}

footer {
    margin-top: 96px;
    padding: 48px 0 32px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-nav a {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
}

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

.footer-text {
    font-size: 14px;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.97);
    color: var(--bg-white);
    padding: 24px;
    display: none;
    z-index: 2000;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

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

.cookie-button {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

.page-section {
    margin-bottom: 48px;
}

.page-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.page-section p {
    margin-bottom: 16px;
}

.page-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.page-section ul li {
    margin-bottom: 8px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    color: var(--secondary);
    margin-bottom: 24px;
}

.thanks-title {
    font-size: 42px;
    margin-bottom: 16px;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
}

@media (max-width: 768px) {
    .editorial-wrapper {
        padding: 0 20px;
    }

    .article-title {
        font-size: 32px;
    }

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

    .pullquote {
        padding: 24px 24px;
        font-size: 20px;
    }

    .cta-block {
        padding: 32px 24px;
    }

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

    .sticky-cta {
        flex-direction: column;
        gap: 12px;
    }

    .sticky-cta-text {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .cookie-content {
        flex-direction: column;
    }

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

    .cookie-button {
        width: 100%;
    }

    nav {
        gap: 16px;
    }
}
