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

:root {
    --primary-color: #2c2416;
    --accent-color: #d4a574;
    --light-bg: #f9f7f4;
    --dark-bg: #1a1510;
    --text-color: #333;
    --light-text: #666;
    --border-color: #e0d9cf;
}

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

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

header {
    position: relative;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 21, 16, 0.7), rgba(212, 165, 116, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 16px 45px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.story-section {
    padding: 100px 8%;
    background: var(--light-bg);
}

.story-container {
    max-width: 900px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-container p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--light-text);
}

.visual-grid {
    display: flex;
    gap: 30px;
    margin: 80px 0;
    flex-wrap: wrap;
}

.visual-item {
    flex: 1;
    min-width: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: var(--border-color);
}

.visual-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.asymmetric-section {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.asym-left {
    flex: 1.2;
    background: var(--dark-bg);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.asym-left h2 {
    font-size: 44px;
    color: white;
    margin-bottom: 30px;
}

.asym-left p {
    font-size: 17px;
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.7;
}

.asym-right {
    flex: 1;
    position: relative;
    background: var(--border-color);
}

.asym-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-showcase {
    padding: 100px 5%;
    background: white;
}

.services-showcase h2 {
    text-align: center;
    font-size: 46px;
    margin-bottom: 70px;
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: var(--border-color);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

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

.cta-secondary {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s;
    cursor: pointer;
    border: none;
}

.cta-secondary:hover {
    background: var(--accent-color);
}

.form-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #2c2416, #3d3228);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.form-container p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--light-text);
    font-size: 16px;
}

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

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

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

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

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

.submit-btn {
    width: 100%;
    background: var(--accent-color);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonials-section {
    padding: 100px 5%;
    background: var(--light-bg);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 20px;
    font-style: italic;
}

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

footer {
    background: var(--dark-bg);
    color: #ddd;
    padding: 60px 5% 30px;
}

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

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

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-col p,
.footer-col a {
    color: #bbb;
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

.disclaimer-section {
    background: #fff9e6;
    padding: 40px 5%;
    border-top: 2px solid #f0e5c8;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 21, 16, 0.95);
    color: white;
    padding: 25px 5%;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cookie-reject {
    background: #666;
    color: white;
}

.cookie-accept:hover {
    background: #c89560;
}

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

.page-header {
    background: var(--dark-bg);
    color: white;
    padding: 80px 5% 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-content {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--light-text);
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--light-text);
}

.contact-info {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 15px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background: var(--light-bg);
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.service-selection {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-option {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    background: white;
    border: 3px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.service-option:hover {
    border-color: var(--accent-color);
}

.service-option.selected {
    border-color: var(--accent-color);
    background: #fef9f3;
}

.service-option h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-option .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .asymmetric-section {
        flex-direction: column;
    }

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

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

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