:root {
    --color-primary: #c2410c;
    --color-primary-dark: #9a3412;
    --color-secondary: #f97316;
    --color-accent: #fbbf24;
    --color-bg-light: #fffbeb;
    --color-bg-warm: #fef3c7;
    --color-bg-dark: #292524;
    --color-text: #1c1917;
    --color-text-light: #78716c;
    --color-text-inverse: #fafaf9;
    --color-border: #e7e5e4;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-soft: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 32px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: #fafaf9;
}

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

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

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

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

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

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    padding: 8px 0;
    font-size: 13px;
}

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

.ad-disclosure {
    opacity: 0.85;
}

.header-main {
    padding: 16px 0;
}

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

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

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

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

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

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

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

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

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-color: var(--color-bg-warm);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28,25,23,0.85) 0%, rgba(28,25,23,0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--color-text-inverse);
    max-width: 680px;
    padding: 60px 0;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 19px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

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

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

.btn-secondary:hover {
    background: var(--color-text-inverse);
    color: var(--color-text);
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-dark {
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
}

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

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--color-text);
}

.section-dark .section-header h2 {
    color: var(--color-text-inverse);
}

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

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    width: calc(33.333% - 22px);
    min-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

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

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

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

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

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

.service-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.service-price .amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

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

/* Features */
.features-row {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-bottom: 80px;
}

.features-row:last-child {
    margin-bottom: 0;
}

.features-row.reverse {
    flex-direction: row-reverse;
}

.features-image {
    flex: 1;
    background-color: var(--color-bg-warm);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
}

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

.features-content {
    flex: 1;
}

.features-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.features-content p {
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-size: 17px;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
    color: var(--color-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 18px;
}

.testimonial-info strong {
    display: block;
    font-size: 16px;
}

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

/* Stats */
.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.section-dark .stat-number {
    color: var(--color-accent);
}

.stat-label {
    font-size: 16px;
    color: var(--color-text-light);
}

.section-dark .stat-label {
    color: rgba(255,255,255,0.7);
}

/* About Preview */
.about-preview {
    display: flex;
    gap: 56px;
    align-items: center;
}

.about-preview-image {
    flex: 0 0 45%;
    background-color: var(--color-bg-warm);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-preview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-preview-content {
    flex: 1;
}

.about-preview-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 20px;
}

.about-preview-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    font-size: 17px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 19px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Forms */
.form-section {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: border-color 0.2s ease;
}

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

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

.form-submit {
    text-align: center;
    margin-top: 32px;
}

/* Footer */
.site-footer {
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    padding: 64px 0 32px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

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

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

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

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-legal a {
    color: rgba(255,255,255,0.6);
    margin-left: 24px;
}

.footer-legal a:hover {
    color: #fff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    color: var(--color-text-inverse);
    padding: 20px 24px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}

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

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.cookie-accept {
    background: var(--color-primary);
    color: #fff;
}

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

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

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

/* Page Headers */
.page-header {
    background: var(--color-bg-warm);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    margin-bottom: 16px;
}

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

/* Content Pages */
.content-page {
    padding: 64px 0;
}

.content-page h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
}

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

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

.content-page ul,
.content-page ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

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

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 320px;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-text);
}

.contact-item p {
    color: var(--color-text-light);
    font-size: 16px;
}

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

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

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

.thanks-content h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

/* Disclaimer */
.disclaimer {
    background: #fef3c7;
    border-left: 4px solid var(--color-accent);
    padding: 20px 24px;
    margin: 40px 0;
    font-size: 14px;
    color: var(--color-text);
}

/* Responsive */
@media (max-width: 968px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 0;
        border-top: 1px solid var(--color-border);
        box-shadow: var(--shadow-soft);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .features-row,
    .features-row.reverse {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

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

@media (max-width: 640px) {
    .section {
        padding: 56px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .stat-number {
        font-size: 42px;
    }

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

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

    .footer-legal a {
        margin: 0 12px;
    }

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