:root {
    --color-primary: #1a1a2e;
    --color-secondary: #c9a227;
    --color-accent: #d4af37;
    --color-dark: #0f0f1a;
    --color-light: #f8f6f0;
    --color-muted: #6b6b7b;
    --color-bg-alt: #232336;
    --color-fallback: #2d2d42;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

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

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

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

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

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }

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

.ad-disclosure {
    background-color: var(--color-dark);
    color: var(--color-muted);
    font-size: 0.75rem;
    text-align: center;
    padding: 6px 12px;
}

.header {
    background-color: var(--color-primary);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-secondary);
    letter-spacing: 2px;
}

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

.nav a {
    color: var(--color-light);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-light);
    margin: 5px 0;
    transition: transform 0.3s ease;
}

.split-section {
    display: flex;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px;
}

.split-image {
    flex: 1;
    background-color: var(--color-fallback);
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero {
    background-color: var(--color-dark);
    min-height: 85vh;
}

.hero .split-content {
    color: var(--color-light);
    padding: 80px 64px;
}

.hero h1 {
    color: var(--color-light);
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--color-muted);
    margin-bottom: 32px;
    max-width: 480px;
}

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

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

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

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

.section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.section-dark h2,
.section-dark h3 {
    color: var(--color-light);
}

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-card {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: var(--color-light);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    height: 200px;
    background-color: var(--color-fallback);
    overflow: hidden;
}

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

.service-body {
    padding: 28px;
}

.service-body h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

.service-body p {
    color: var(--color-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

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

.about-content {
    display: flex;
    gap: 48px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--color-muted);
}

.about-image {
    flex: 1;
    background-color: var(--color-fallback);
    min-height: 400px;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 40px 0;
}

.feature-item {
    flex: 1 1 200px;
    max-width: 260px;
    text-align: center;
}

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

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

.feature-item h4 {
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--color-muted);
}

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

.testimonial-card {
    background-color: var(--color-primary);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.cta-section {
    background-color: var(--color-secondary);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-dark);
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--color-primary);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background-color: var(--color-dark);
    color: var(--color-light);
}

.cta-section .btn:hover {
    background-color: var(--color-primary);
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info {
    flex: 1;
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    color: var(--color-light);
    margin-bottom: 32px;
}

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

.contact-item h4 {
    color: var(--color-secondary);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--color-light);
    line-height: 1.6;
}

.contact-form-wrap {
    flex: 1;
    background-color: var(--color-light);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

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

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

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

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

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

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

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

.footer-col a {
    color: var(--color-muted);
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid var(--color-bg-alt);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: var(--color-muted);
}

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

.page-header h1 {
    color: var(--color-light);
    margin-bottom: 16px;
}

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

.legal-content {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    margin-top: 28px;
    margin-bottom: 12px;
}

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

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

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    background-color: var(--color-light);
}

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

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

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

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

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

.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.show {
    display: block;
}

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

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

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

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

.cookie-btn:hover {
    opacity: 0.9;
}

.disclaimer {
    background-color: var(--color-bg-alt);
    padding: 20px;
    font-size: 0.85rem;
    color: var(--color-muted);
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .split-section,
    .split-section.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 48px 24px;
    }

    .split-image {
        min-height: 300px;
    }

    .hero {
        min-height: auto;
    }

    .hero .split-content {
        padding: 60px 24px;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

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

    .about-image {
        width: 100%;
        min-height: 300px;
    }

    .contact-split {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-wrap {
        padding: 48px 24px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-primary);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

    .nav.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

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

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

    .features-row {
        flex-direction: column;
        align-items: center;
    }
}
