:root {
    --color-primary: #8B4513;
    --color-secondary: #D2691E;
    --color-accent: #F4A460;
    --color-dark: #2C1810;
    --color-light: #FFF8F0;
    --color-cream: #FFFAF5;
    --color-text: #3D2914;
    --color-muted: #8B7355;
    --color-border: #E8DDD0;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, 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-text);
    background-color: var(--color-cream);
}

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

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

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

.ad-disclosure {
    background-color: var(--color-dark);
    color: var(--color-light);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
}

header {
    background-color: var(--color-light);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
}

.logo span {
    color: var(--color-secondary);
}

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

nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 0;
    position: relative;
}

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

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-primary);
}

.hero-editorial {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 80px 24px;
    text-align: center;
}

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

.hero-editorial h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-editorial .lead {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-image-container {
    max-width: var(--max-width-medium);
    margin: -40px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.hero-image-container .img-wrapper {
    background-color: var(--color-muted);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-image-container img {
    width: 100%;
    height: 400px;
}

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

.editorial-section h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.editorial-section p {
    margin-bottom: 20px;
}

.editorial-section .inline-image {
    margin: 40px -60px;
    background-color: var(--color-muted);
    border-radius: 4px;
    overflow: hidden;
}

.editorial-section .inline-image img {
    width: 100%;
    height: 320px;
}

.editorial-section .image-caption {
    font-size: 14px;
    color: var(--color-muted);
    text-align: center;
    padding: 12px;
    background-color: var(--color-light);
}

.cta-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    margin: 24px 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-inline:hover {
    background-color: var(--color-secondary);
    color: var(--color-light);
    transform: translateY(-2px);
}

.section-highlight {
    background-color: var(--color-light);
    border-left: 4px solid var(--color-secondary);
    padding: 32px 40px;
    margin: 40px 0;
}

.section-highlight h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

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

.services-grid h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--color-dark);
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-card {
    display: flex;
    gap: 32px;
    background-color: var(--color-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card .card-image {
    flex: 0 0 280px;
    background-color: var(--color-muted);
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    min-height: 240px;
}

.service-card .card-content {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.service-card p {
    color: var(--color-muted);
    margin-bottom: 16px;
    font-size: 15px;
}

.service-card .price {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.service-card .price span {
    font-size: 14px;
    font-weight: normal;
    color: var(--color-muted);
}

.service-card .card-cta {
    align-self: flex-start;
    background-color: var(--color-secondary);
    color: var(--color-light);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-card .card-cta:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.testimonial-section {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 80px 24px;
}

.testimonial-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
    text-align: center;
}

.testimonial-content blockquote {
    font-family: var(--font-heading);
    font-size: 26px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 24px;
}

.testimonial-content cite {
    font-size: 16px;
    opacity: 0.8;
}

.form-section {
    background-color: var(--color-light);
    padding: 80px 24px;
}

.form-wrapper {
    max-width: 560px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    text-align: center;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.form-wrapper .form-subtitle {
    text-align: center;
    color: var(--color-muted);
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s 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(139, 69, 19, 0.1);
}

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

.btn-submit {
    background-color: var(--color-primary);
    color: var(--color-light);
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.about-hero {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 100px 24px;
    text-align: center;
}

.about-hero h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

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

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--color-dark);
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-image {
    margin: 40px 0;
    background-color: var(--color-muted);
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 360px;
}

.contact-hero {
    background-color: var(--color-secondary);
    color: var(--color-light);
    padding: 80px 24px;
    text-align: center;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: 40px;
    margin-bottom: 12px;
}

.contact-info-section {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    padding: 60px 24px;
    display: flex;
    gap: 48px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

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

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

.contact-item h3 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--color-dark);
}

.contact-item p {
    color: var(--color-muted);
    font-size: 15px;
}

.contact-form-wrapper {
    flex: 1;
    background-color: var(--color-light);
    padding: 40px;
    border-radius: 8px;
}

.contact-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-dark);
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
}

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

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

.thanks-content h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.thanks-content p {
    color: var(--color-muted);
    margin-bottom: 8px;
}

.thanks-content .back-link {
    display: inline-block;
    margin-top: 32px;
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-content .back-link:hover {
    background-color: var(--color-secondary);
    color: var(--color-light);
}

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

.legal-page h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--color-dark);
}

.legal-page h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--color-dark);
}

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

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

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

footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}

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

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

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

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-column h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.6;
}

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

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

.footer-column a {
    color: var(--color-light);
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-bottom {
    max-width: var(--max-width-wide);
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--color-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 20px 24px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.disclaimer-section {
    background-color: var(--color-light);
    border-top: 1px solid var(--color-border);
    padding: 24px;
    font-size: 13px;
    color: var(--color-muted);
    text-align: center;
}

.disclaimer-section p {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .header-inner {
        padding: 12px 16px;
    }

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

    nav ul.active {
        display: flex;
    }

    nav li {
        border-bottom: 1px solid var(--color-border);
    }

    nav li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 12px 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-editorial {
        padding: 60px 16px;
    }

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

    .hero-image-container {
        margin-top: -20px;
        padding: 0 16px;
    }

    .hero-image-container img {
        height: 240px;
    }

    .editorial-section {
        padding: 48px 16px;
    }

    .editorial-section .inline-image {
        margin: 32px -16px;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-card .card-image {
        flex: 0 0 200px;
    }

    .contact-info-section {
        flex-direction: column;
        padding: 40px 16px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

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