:root {
    --color-primary: #8B4513;
    --color-secondary: #C41E3A;
    --color-accent: #DAA520;
    --color-bg-light: #FDF5E6;
    --color-bg-dark: #2C1810;
    --color-text: #3D2914;
    --color-text-light: #F5F5DC;
    --color-border: #D4B896;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', Tahoma, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    background-color: var(--color-bg-light);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.3;
}

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

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

header {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #4A2C1A 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-accent);
    font-weight: bold;
    letter-spacing: 1px;
}

.logo span {
    color: var(--color-text-light);
    font-weight: normal;
}

nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    color: var(--color-text-light);
    font-size: 0.95rem;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-text-light);
    margin: 5px 0;
    transition: 0.3s;
}

.hero {
    background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(44, 24, 16, 0.8)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="p" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1.5" fill="%23DAA520" opacity="0.3"/></pattern></defs><rect fill="url(%23p)" width="100" height="100"/></svg>');
    padding: 100px 0;
    text-align: center;
    color: var(--color-text-light);
}

.hero h1 {
    font-size: 3rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn:hover {
    background: #A01830;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-bg-dark);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.editorial-section {
    padding: 70px 0;
}

.editorial-section:nth-child(even) {
    background: white;
}

.editorial-content {
    max-width: 750px;
    margin: 0 auto;
}

.editorial-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.editorial-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
}

.editorial-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.inline-image {
    margin: 40px -50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.inline-image img {
    width: 100%;
}

.image-caption {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-style: italic;
}

.highlight-box {
    background: linear-gradient(135deg, var(--color-primary) 0%, #6B3410 100%);
    color: var(--color-text-light);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.highlight-box h3 {
    color: var(--color-accent);
    margin-bottom: 15px;
}

.split-section {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-image svg {
    width: 80px;
    height: 80px;
    fill: var(--color-accent);
}

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

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

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #666;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: normal;
    color: #888;
}

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

.testimonial-section h2 {
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 50px;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    flex: 1 1 300px;
    max-width: 400px;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.testimonial-author {
    color: var(--color-accent);
    font-weight: 600;
}

.form-section {
    background: linear-gradient(135deg, #F5E6D3 0%, #EED9C4 100%);
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    font-size: 1rem;
    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(--color-primary);
}

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

.form-submit {
    text-align: center;
}

.form-submit .btn {
    width: 100%;
    padding: 16px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.sticky-cta .btn {
    box-shadow: 0 5px 25px rgba(196, 30, 58, 0.5);
}

footer {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 60px 0 30px;
}

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

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

.footer-column h4 {
    color: var(--color-accent);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

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

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

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

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

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

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

.cookie-buttons .btn {
    padding: 10px 25px;
}

.btn-reject {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
}

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

.page-header {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #4A2C1A 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--color-text-light);
}

.page-header h1 {
    color: var(--color-text-light);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.content-page h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-page p,
.content-page ul,
.content-page ol {
    margin-bottom: 15px;
}

.content-page ul,
.content-page ol {
    padding-left: 30px;
}

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

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

.contact-item {
    flex: 1 1 250px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-item svg {
    width: 50px;
    height: 50px;
    fill: var(--color-secondary);
    margin-bottom: 15px;
}

.contact-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #E83A56 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: white;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 30px;
    color: #666;
}

.about-timeline {
    position: relative;
    padding-left: 40px;
    margin: 50px 0;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--color-secondary);
    border-radius: 50%;
    border: 3px solid var(--color-bg-light);
}

.timeline-item h3 {
    margin-bottom: 10px;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-bg-dark);
}

.feature-text h4 {
    margin-bottom: 5px;
    color: var(--color-primary);
}

.cta-section {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #A01830 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

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

.cta-section .btn:hover {
    background: var(--color-accent);
    color: var(--color-bg-dark);
}

.inline-cta {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 25px 30px;
    border-radius: 8px;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.inline-cta p {
    margin: 0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding-top: 15px;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .split-section {
        flex-direction: column;
        gap: 30px;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .inline-image {
        margin: 30px 0;
    }

    .form-container {
        padding: 30px 20px;
    }

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

    .sticky-cta {
        bottom: 80px;
        right: 15px;
    }

    .sticky-cta .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

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

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