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

:root {
    --primary: #2c1810;
    --secondary: #d4a373;
    --accent: #8b5a3c;
    --light: #f8f5f1;
    --dark: #1a0f0a;
    --text: #3d2817;
    --border: #e8dfd5;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.ad-disclosure {
    background: var(--secondary);
    color: var(--dark);
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    transition: color 0.3s;
}

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

.hero-section {
    position: relative;
    height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 95px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d4a373;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.7) 0%, rgba(139, 90, 60, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 820px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 68px;
    font-weight: 300;
    margin-bottom: 28px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 21px;
    margin-bottom: 42px;
    line-height: 1.7;
    font-weight: 300;
}

.cta-primary {
    display: inline-block;
    padding: 18px 48px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.story-section {
    padding: 110px 6%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.story-section h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 32px;
    color: var(--primary);
    line-height: 1.2;
}

.story-section p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 28px;
    color: var(--text);
}

.image-text-offset {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 90px 6%;
    max-width: 1300px;
    margin: 0 auto;
}

.image-text-offset.reverse {
    flex-direction: row-reverse;
}

.image-side {
    flex: 1;
    background-color: #e8dfd5;
}

.image-side img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.text-side {
    flex: 1;
    padding: 30px;
}

.text-side h3 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 24px;
    color: var(--primary);
}

.text-side p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.services-grid {
    padding: 100px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 400;
    color: var(--primary);
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 30px);
    min-width: 320px;
    background: white;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 280px;
    background-color: #d4a373;
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 600;
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text);
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: var(--accent);
}

.select-service-btn.selected {
    background: var(--secondary);
    color: var(--dark);
}

.testimonials-section {
    padding: 90px 6%;
    background: var(--primary);
    color: white;
}

.testimonials-section h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.testimonial-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--secondary);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

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

.form-section {
    padding: 100px 6%;
    max-width: 680px;
    margin: 0 auto;
}

.form-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 400;
}

.form-section > p {
    text-align: center;
    margin-bottom: 45px;
    font-size: 17px;
    color: var(--text);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    font-size: 15px;
    font-family: inherit;
    background: white;
}

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--accent);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.disclaimer-box {
    background: #fff9f0;
    border-left: 4px solid var(--secondary);
    padding: 25px;
    margin: 60px 6%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary);
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}

.footer {
    background: var(--dark);
    color: white;
    padding: 60px 6% 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-col p,
.footer-col address {
    font-size: 14px;
    line-height: 1.8;
    font-style: normal;
}

.footer-col a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

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

.references-section {
    padding: 40px 6%;
    background: #f5f5f5;
    max-width: 1200px;
    margin: 0 auto;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary);
}

.references-section ol {
    font-size: 13px;
    line-height: 1.9;
    padding-left: 20px;
}

.references-section a {
    color: var(--accent);
    text-decoration: none;
}

.references-section a:hover {
    text-decoration: underline;
}

.citation {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.citation:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 25px 6%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    display: none;
    border-top: 3px solid var(--secondary);
}

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

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

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

.cookie-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

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

.cookie-reject:hover {
    background: var(--primary);
    color: white;
}

.page-header {
    padding: 140px 6% 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--light) 0%, #e8dfd5 100%);
}

.page-header h1 {
    font-size: 52px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 18px;
}

.page-header p {
    font-size: 18px;
    color: var(--text);
}

.content-section {
    padding: 60px 6%;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 32px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 500;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--primary);
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.content-section ul,
.content-section ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

.contact-info {
    background: white;
    padding: 40px;
    border: 1px solid var(--border);
    margin-bottom: 40px;
}

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

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.contact-info strong {
    color: var(--primary);
    font-weight: 600;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 6%;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: white;
    padding: 60px 40px;
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.thanks-box h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: var(--primary);
    font-weight: 400;
}

.thanks-box p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text);
}

.thanks-box a {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-box a:hover {
    background: var(--accent);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .image-text-offset {
        flex-direction: column;
        gap: 40px;
    }

    .image-text-offset.reverse {
        flex-direction: column;
    }

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

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

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

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