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

:root {
    --primary-ochre: #CC8844;
    --dark-charcoal: #2A2A2A;
    --soft-sand: #F4EFE6;
    --deep-dune: #8B6F47;
    --accent-teal: #2C5F6F;
    --light-cream: #FDFBF7;
    --text-gray: #4A4A4A;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.75;
    color: var(--text-gray);
    background-color: var(--light-cream);
}

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

.wide-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

header.site-header {
    background-color: var(--dark-charcoal);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-ochre);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-ochre);
    text-decoration: none;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

nav.main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

nav.main-nav a {
    color: var(--soft-sand);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #999;
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.hero-editorial {
    background-color: var(--soft-sand);
    padding: 80px 0 60px;
    text-align: center;
}

.hero-editorial h1 {
    font-size: 2.8rem;
    line-height: 1.3;
    color: var(--dark-charcoal);
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.hero-editorial .subtitle {
    font-size: 1.25rem;
    color: var(--deep-dune);
    font-style: italic;
    margin-bottom: 40px;
}

.editorial-content {
    padding: 60px 0;
}

.editorial-paragraph {
    font-size: 1.125rem;
    line-height: 1.85;
    margin-bottom: 32px;
    color: var(--text-gray);
}

.editorial-paragraph:first-letter {
    font-size: 3.5rem;
    line-height: 1;
    float: left;
    margin: 4px 12px 0 0;
    color: var(--primary-ochre);
    font-weight: bold;
}

.inline-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    margin: 48px 0;
    border-radius: 2px;
    background-color: var(--soft-sand);
}

.content-block {
    margin: 60px 0;
}

.section-heading {
    font-size: 2rem;
    color: var(--dark-charcoal);
    margin-bottom: 28px;
    font-weight: 400;
    text-align: left;
}

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-teal);
    color: white;
    text-decoration: none;
    margin: 20px 0;
    font-size: 1rem;
    transition: background-color 0.3s;
    border-radius: 2px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.cta-inline:hover {
    background-color: var(--deep-dune);
}

.service-narrative {
    padding: 80px 0;
    background-color: white;
}

.service-item {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid #E5E5E5;
}

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

.service-title {
    font-size: 1.6rem;
    color: var(--dark-charcoal);
    margin-bottom: 16px;
}

.service-price {
    font-size: 1.3rem;
    color: var(--primary-ochre);
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.form-section {
    padding: 80px 0;
    background-color: var(--soft-sand);
}

.form-container {
    max-width: 580px;
    margin: 0 auto;
}

.form-intro {
    font-size: 1.125rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-gray);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--dark-charcoal);
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #D0D0D0;
    background-color: white;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    border-radius: 2px;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--dark-charcoal);
    color: white;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Helvetica', 'Arial', sans-serif;
    border-radius: 2px;
}

.submit-btn:hover {
    background-color: var(--primary-ochre);
}

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

.testimonial {
    margin: 40px 0;
    padding: 32px;
    background-color: white;
    border-left: 4px solid var(--primary-ochre);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--deep-dune);
    font-weight: bold;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

footer.site-footer {
    background-color: var(--dark-charcoal);
    color: var(--soft-sand);
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--primary-ochre);
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--soft-sand);
}

.footer-section a {
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    font-size: 0.85rem;
    color: #999;
}

.disclaimer {
    padding: 40px 0;
    background-color: #F9F9F9;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}

.disclaimer-content {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.reference-list {
    padding: 40px 0;
    background-color: white;
}

.reference-list h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark-charcoal);
}

.reference-item {
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.reference-item a {
    color: var(--accent-teal);
    text-decoration: none;
}

.reference-item a:hover {
    text-decoration: underline;
}

.citation {
    display: inline-block;
    color: var(--accent-teal);
    text-decoration: none;
    font-size: 0.85rem;
    vertical-align: super;
    font-weight: bold;
    margin: 0 2px;
}

.citation:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-charcoal);
    color: white;
    padding: 24px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
    border-radius: 2px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.cookie-accept {
    background-color: var(--primary-ochre);
    color: white;
}

.cookie-accept:hover {
    background-color: var(--deep-dune);
}

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

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

.page-header {
    padding: 60px 0 40px;
    background-color: var(--soft-sand);
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: var(--dark-charcoal);
    font-weight: 400;
}

.page-content {
    padding: 60px 0;
}

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

.content-section h2 {
    font-size: 1.8rem;
    color: var(--dark-charcoal);
    margin-bottom: 20px;
    font-weight: 400;
}

.content-section h3 {
    font-size: 1.4rem;
    color: var(--deep-dune);
    margin-bottom: 16px;
    margin-top: 32px;
    font-weight: 400;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section ul {
    margin: 20px 0 20px 32px;
}

.content-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.contact-info-block {
    background-color: white;
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid var(--primary-ochre);
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--deep-dune);
    margin-bottom: 8px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.contact-detail p {
    font-size: 1.05rem;
    color: var(--text-gray);
}

.thanks-message {
    text-align: center;
    padding: 100px 0;
}

.thanks-message h1 {
    font-size: 2.8rem;
    color: var(--dark-charcoal);
    margin-bottom: 24px;
    font-weight: 400;
}

.thanks-message p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-message .cta-inline {
    margin-top: 40px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 0;
}

.service-card {
    background-color: white;
    padding: 40px;
    border-left: 4px solid var(--primary-ochre);
}

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

.about-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    margin: 40px 0;
    background-color: var(--soft-sand);
}

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

    .header-content {
        flex-direction: column;
        gap: 16px;
    }

    nav.main-nav {
        gap: 16px;
        font-size: 0.9rem;
    }

    .inline-image,
    .about-image {
        height: 280px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

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