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

:root {
    --primary: #2c1810;
    --secondary: #8b6f47;
    --accent: #d4a574;
    --light: #f5f1ed;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --border: #e0d5c7;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    object-fit: cover;
    display: block;
}

.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo-area {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.main-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.main-menu a {
    color: var(--light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 3px;
}

.split-hero {
    display: flex;
    margin-top: 72px;
    min-height: 88vh;
}

.hero-left {
    flex: 1;
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary);
    color: var(--light);
}

.hero-right {
    flex: 1;
    position: relative;
    background: var(--secondary);
}

.hero-right img {
    width: 100%;
    height: 100%;
}

.hero-heading {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(245, 241, 237, 0.85);
    max-width: 520px;
}

.cta-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #e8bc8a;
    transform: translateY(-2px);
}

.split-section {
    display: flex;
    min-height: 70vh;
}

.split-left {
    flex: 1;
    position: relative;
    background: var(--border);
}

.split-left img {
    width: 100%;
    height: 100%;
}

.split-right {
    flex: 1;
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.reverse .split-left {
    order: 2;
}

.reverse .split-right {
    order: 1;
}

.section-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.section-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 2rem;
}

.service-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 550px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--light);
    border-left: 3px solid var(--accent);
    transition: all 0.3s;
}

.service-item:hover {
    background: #fff;
    transform: translateX(8px);
}

.service-info h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-info p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.6;
}

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

.contact-section {
    background: var(--primary);
    color: var(--light);
    padding: 6rem 6%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.contact-left {
    flex: 1;
}

.contact-right {
    flex: 1;
}

.contact-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

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

.contact-item p {
    font-size: 1.1rem;
    color: rgba(245, 241, 237, 0.9);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.3);
    color: var(--light);
    font-size: 1rem;
    border-radius: 3px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 241, 237, 0.5);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--primary);
    color: var(--light);
}

.footer {
    background: #1a1108;
    color: rgba(245, 241, 237, 0.7);
    padding: 3.5rem 6% 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    color: rgba(245, 241, 237, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(212, 165, 116, 0.2);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.88rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 17, 8, 0.98);
    padding: 1.8rem 4%;
    display: none;
    z-index: 2000;
    border-top: 2px solid var(--accent);
}

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

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

.cookie-text {
    color: var(--light);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 1.8rem;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

.btn-accept:hover {
    background: #e8bc8a;
}

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

.btn-reject:hover {
    background: rgba(212, 165, 116, 0.1);
}

.page-hero {
    background: var(--primary);
    color: var(--light);
    padding: 8rem 6% 4rem;
    margin-top: 72px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 6%;
    background: #fff;
}

.page-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}

.page-content h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-mid);
}

.page-content ul,
.page-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.page-content li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: var(--text-mid);
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 5rem 6%;
    text-align: center;
    margin-top: 72px;
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.thanks-container h1 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.15rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.full-width-section {
    padding: 6rem 6%;
    background: #fff;
}

.centered-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

    .reverse {
        flex-direction: column;
    }

    .hero-left,
    .split-right {
        padding: 3rem 5%;
    }

    .hero-right,
    .split-left {
        min-height: 400px;
    }

    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2.5rem;
    }

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

    .main-menu {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .hero-heading {
        font-size: 2.5rem;
    }
}
