:root {
    --primary: #2d5a3d;
    --primary-dark: #1e3d29;
    --secondary: #8b7355;
    --accent: #c9a66b;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f0;
    --bg-light: #fafaf8;
    --bg-cream: #f0ebe3;
    --bg-stone: #e8e2d9;
    --bg-dark: #2a2a2a;
    --border: #d4cfc5;
    --shadow: rgba(0,0,0,0.08);
    --shadow-strong: rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ad-disclosure {
    background: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 11px;
}

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

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

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

nav a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.25s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--bg-stone);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 0;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero p {
    font-size: 19px;
    color: #444;
    margin-bottom: 32px;
    max-width: 560px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-strong);
}

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

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

.btn-accent {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-accent:hover {
    background: #b8935a;
}

section {
    padding: 80px 0;
}

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

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

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

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

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

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

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: #bbb;
}

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

.service-card {
    flex: 1 1 340px;
    max-width: 380px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-strong);
}

.service-card-image {
    height: 200px;
    background-color: var(--bg-stone);
    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.08);
}

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

.service-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    font-size: 13px;
    color: #777;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1 1 400px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-stone);
    min-height: 350px;
}

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

.about-text {
    flex: 1 1 450px;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 18px;
    color: #444;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

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

.feature-icon svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.process-step {
    flex: 1 1 250px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.process-step p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

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

.testimonial-card {
    flex: 1 1 320px;
    max-width: 400px;
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 60px;
    color: var(--accent);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-stone);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary);
}

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--text-dark);
}

.author-info span {
    font-size: 13px;
    color: #777;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    text-align: center;
    padding: 80px 24px;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.form-section {
    background: var(--bg-cream);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.form-info {
    flex: 1 1 350px;
}

.form-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
}

.form-info p {
    color: #555;
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.contact-item-text strong {
    display: block;
    font-size: 14px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.contact-item-text span {
    font-size: 15px;
    color: #444;
}

.form-container {
    flex: 1 1 400px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 30px var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-light);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
}

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

.form-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
}

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

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #444;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

.footer-col a {
    color: #bbb;
    transition: color 0.25s;
}

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

.footer-col p {
    color: #999;
    font-size: 14px;
    line-height: 1.7;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: #888;
}

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

.footer-legal a {
    color: #888;
}

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

.disclaimer {
    background: #222;
    padding: 24px;
    font-size: 13px;
    color: #888;
    text-align: center;
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 20px 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-text {
    flex: 1 1 500px;
    font-size: 14px;
    color: #ccc;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.25s;
}

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

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

.cookie-reject {
    background: transparent;
    color: #ccc;
    border: 1px solid #666;
}

.cookie-reject:hover {
    background: #333;
}

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

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

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

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

.content-section h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary);
}

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

.content-section h3 {
    font-size: 22px;
    margin: 30px 0 16px;
    color: var(--primary-dark);
}

.content-section p {
    margin-bottom: 16px;
    color: #444;
}

.content-section ul {
    margin: 16px 0 16px 24px;
    color: #444;
}

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

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

.thanks-box {
    max-width: 600px;
    background: #fff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 10px 50px var(--shadow);
}

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

.thanks-box h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary);
}

.thanks-box p {
    color: #555;
    margin-bottom: 12px;
}

.thanks-service {
    background: var(--bg-cream);
    padding: 16px 24px;
    border-radius: 6px;
    margin: 24px 0;
    font-weight: 600;
    color: var(--primary-dark);
}

.contact-page-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-box {
    flex: 1 1 350px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-info-box h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary);
}

.contact-map {
    flex: 1 1 400px;
    min-height: 400px;
    background: var(--bg-stone);
    border-radius: 8px;
    overflow: hidden;
}

.hours-table {
    width: 100%;
    margin-top: 20px;
}

.hours-table tr {
    border-bottom: 1px solid var(--border);
}

.hours-table td {
    padding: 12px 0;
    font-size: 15px;
}

.hours-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.hours-table td:last-child {
    text-align: right;
    color: #666;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-item {
    flex: 1 1 300px;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-stone);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .hero h1 {
        font-size: 36px;
    }

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

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px var(--shadow);
    }

    nav ul.active {
        display: flex;
    }

    nav li {
        border-bottom: 1px solid var(--border);
    }

    nav a {
        display: block;
        padding: 14px 0;
    }

    .hamburger {
        display: flex;
    }

    .about-split {
        gap: 40px;
    }

    .form-wrapper {
        gap: 40px;
    }

    .footer-main {
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .header-top .container {
        justify-content: center;
        text-align: center;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 28px;
    }

    section {
        padding: 60px 0;
    }

    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .form-container {
        padding: 28px;
    }

    .thanks-box {
        padding: 40px 28px;
    }
}
