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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --accent-color: #c9a961;
    --text-color: #2c2c2c;
    --light-bg: #f8f7f5;
    --white: #ffffff;
    --border-color: #e0ddd8;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

.btn-accept:hover {
    background-color: #d4b56f;
    transform: translateY(-1px);
}

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

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #666;
    font-style: italic;
    padding: 4px 12px;
    background-color: var(--light-bg);
    border-radius: 3px;
}

.editorial-container {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: var(--light-bg);
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 80px 20px;
}

.intro-narrative p {
    font-size: 18px;
    margin-bottom: 28px;
    line-height: 1.8;
}

.drop-cap::first-letter {
    font-size: 72px;
    font-weight: 700;
    float: left;
    line-height: 0.85;
    margin: 8px 12px 0 0;
    color: var(--secondary-color);
}

.intro-narrative h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 56px 0 24px;
    color: var(--primary-color);
    line-height: 1.3;
}

.inline-image-section {
    margin: 48px 0;
}

.inline-image-section img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: var(--light-bg);
    object-fit: cover;
}

.image-caption {
    font-size: 14px;
    font-style: italic;
    color: #666;
    margin-top: 12px;
    text-align: center;
}

.pullquote-section {
    margin: 48px 0;
    padding: 32px 40px;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.pullquote-section blockquote {
    margin: 0;
}

.pullquote-section p {
    font-size: 22px;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.6;
}

.services-grid-editorial {
    margin: 56px 0;
}

.service-card-editorial {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border-color);
}

.service-card-editorial:last-child {
    border-bottom: none;
}

.service-card-editorial img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 24px;
    background-color: var(--light-bg);
    object-fit: cover;
}

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

.service-card-editorial p {
    font-size: 17px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 24px 0 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.cta-inline-section {
    margin: 56px 0;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.cta-inline-section h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.cta-inline-section p {
    font-size: 17px;
    line-height: 1.7;
}

.form-section-editorial {
    margin: 48px 0;
    padding: 40px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.form-section-editorial h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.contact-form-editorial {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    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(--secondary-color);
}

.btn-submit-form {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    align-self: flex-start;
}

.btn-submit-form:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.disclaimer-section {
    margin: 64px 0 0 0;
    padding: 32px;
    background-color: #fef9f3;
    border: 1px solid #e8dcc8;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5a5a;
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 48px 0 24px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 24px 20px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

.about-page,
.services-page,
.contact-page,
.thanks-page,
.legal-page {
    min-height: 60vh;
}

.about-hero,
.services-intro,
.contact-intro {
    background-color: var(--light-bg);
    padding: 60px 20px;
    text-align: center;
}

.about-hero h1,
.services-intro h1,
.contact-intro h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 20px;
    color: #555;
    max-width: 680px;
    margin: 0 auto;
}

.about-story {
    padding: 0;
}

.story-image {
    margin: 48px 0;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: var(--light-bg);
    object-fit: cover;
}

.about-image-inline {
    margin: 48px 0;
}

.about-image-inline img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: var(--light-bg);
    object-fit: cover;
}

.values-section {
    margin: 40px 0;
    padding: 32px;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.values-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.cta-about {
    margin: 48px 0;
    text-align: center;
}

.btn-primary-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.services-detailed {
    padding: 0;
}

.service-detail-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-block:last-child {
    border-bottom: none;
}

.service-detail-image {
    width: 100%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background-color: var(--light-bg);
    object-fit: cover;
}

.service-detail-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-pricing {
    margin: 24px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.price-label {
    font-size: 15px;
    color: #666;
    margin-right: 8px;
}

.price-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
}

.services-cta-section {
    margin: 64px 0 0 0;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 4px;
    text-align: center;
}

.services-cta-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.services-cta-section p {
    font-size: 17px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-details-section {
    padding: 0;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 56px;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: var(--secondary-color);
}

.email-note,
.hours-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
}

.contact-additional-info {
    margin: 48px 0;
    padding: 32px;
    background-color: var(--light-bg);
    border-radius: 4px;
}

.contact-additional-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-additional-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-guidelines {
    list-style: none;
    margin: 20px 0;
}

.contact-guidelines li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.contact-guidelines li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--accent-color);
    font-size: 20px;
}

.privacy-reminder {
    margin: 40px 0;
    padding: 24px;
    background-color: #f0f8ff;
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.privacy-reminder p {
    font-size: 15px;
    line-height: 1.6;
}

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

.thanks-content {
    padding: 0;
}

.thanks-message-box {
    text-align: center;
}

.thanks-message-box h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-lead {
    font-size: 19px;
    margin-bottom: 32px;
    color: #555;
}

.service-confirmation {
    margin: 32px 0;
    padding: 24px;
    background-color: var(--light-bg);
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary-color);
}

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

.next-steps h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.steps-list {
    list-style: none;
    counter-reset: steps-counter;
}

.steps-list li {
    counter-increment: steps-counter;
    padding: 16px 0 16px 48px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.steps-list li::before {
    content: counter(steps-counter);
    position: absolute;
    left: 0;
    top: 16px;
    width: 32px;
    height: 32px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.thanks-additional-info {
    margin: 32px 0;
    font-size: 16px;
    line-height: 1.7;
}

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

.btn-secondary-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.thanks-contact-reminder {
    margin: 48px 0 0 0;
    padding: 32px;
    background-color: var(--light-bg);
    border-radius: 4px;
    text-align: left;
}

.thanks-contact-reminder p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.legal-page h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--primary-color);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0 16px 24px;
    list-style: disc;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}

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

.cookies-table thead {
    background-color: var(--light-bg);
}

.cookies-table th {
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-text-overlay h1 {
        font-size: 32px;
    }

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

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

    .intro-narrative h2 {
        font-size: 26px;
    }

    .service-card-editorial h3 {
        font-size: 22px;
    }

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

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

    .btn-primary-link,
    .btn-secondary-link {
        width: 100%;
        text-align: center;
    }
}