:root {
    --primary: #2c3e50;
    --secondary: #8b4513;
    --accent: #c9a227;
    --text: #333333;
    --text-light: #666666;
    --bg: #faf9f7;
    --bg-alt: #f0ebe3;
    --white: #ffffff;
    --border: #d4c5b0;
    --shadow: rgba(44, 62, 80, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow {
    max-width: 720px;
    margin: 0 auto;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 400;
}

h2 {
    font-size: 2.2rem;
    font-weight: 400;
}

h3 {
    font-size: 1.6rem;
    font-weight: 400;
}

p {
    margin-bottom: 1.5rem;
}

.ad-notice {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    letter-spacing: 0.5px;
}

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

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

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

nav ul li a {
    color: var(--text);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.hero-editorial {
    padding: 80px 20px;
    background-color: var(--bg-alt);
    text-align: center;
}

.hero-editorial h1 {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.hero-editorial .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-image-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #d4c5b0;
    border-radius: 4px;
    overflow: hidden;
}

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

.editorial-section {
    padding: 60px 20px;
}

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

.editorial-intro {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    border-left: 3px solid var(--secondary);
    padding-left: 25px;
    margin: 40px 0;
}

.inline-image {
    margin: 40px 0;
    background-color: #d4c5b0;
    border-radius: 4px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.inline-image.small {
    max-width: 400px;
}

.inline-image.float-left {
    float: left;
    margin: 0 30px 20px 0;
    max-width: 300px;
}

.inline-image.float-right {
    float: right;
    margin: 0 0 20px 30px;
    max-width: 300px;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

.cta-inline {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 3px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

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

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px var(--shadow);
}

.service-card-image {
    height: 200px;
    background-color: #d4c5b0;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.testimonial-block {
    background-color: var(--white);
    padding: 40px;
    margin: 50px 0;
    border-radius: 4px;
    border-left: 4px solid var(--accent);
}

.testimonial-block blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
}

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

.testimonial-author strong {
    color: var(--primary);
}

.contact-form-section {
    background-color: var(--primary);
    padding: 60px 20px;
    color: var(--white);
}

.contact-form-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-family: inherit;
    border: none;
    border-radius: 3px;
    background-color: var(--white);
    color: var(--text);
}

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

.form-group select {
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background-color: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #b8922a;
}

.page-header {
    background-color: var(--bg-alt);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.content-page h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-page ul {
    margin-left: 25px;
    margin-bottom: 1.5rem;
}

.content-page li {
    margin-bottom: 10px;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

.contact-info-item {
    flex: 1 1 250px;
}

.contact-info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.contact-info-item p {
    font-size: 15px;
    margin-bottom: 5px;
}

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

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

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

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

.thanks-content h1 {
    margin-bottom: 20px;
}

.thanks-content p {
    color: var(--text-light);
}

footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

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

.footer-col h4 {
    color: var(--accent);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -5px 20px var(--shadow);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

.cookie-content p a {
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: var(--bg-alt);
    color: var(--text);
}

.cookie-btn.reject:hover {
    background-color: var(--border);
}

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

    h2 {
        font-size: 1.6rem;
    }

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

    nav ul.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-image-wrapper img {
        height: 300px;
    }

    .inline-image.float-left,
    .inline-image.float-right {
        float: none;
        margin: 30px 0;
        max-width: 100%;
    }

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

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