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

:root {
    --primary: #2c5f4f;
    --secondary: #d4a574;
    --accent: #8b6f47;
    --dark: #1a1a1a;
    --light: #f9f7f4;
    --white: #ffffff;
    --gray: #6b6b6b;
    --border: #e0ddd8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

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

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

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-menu a {
    font-size: 15px;
    color: var(--dark);
    transition: color 0.3s;
}

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

.ad-notice {
    font-size: 12px;
    color: var(--gray);
    padding: 4px 12px;
    background: var(--light);
    border-radius: 4px;
}

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

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

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #e8dfd5;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 68px;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-overlay p {
    font-size: 22px;
    color: var(--gray);
    margin-bottom: 45px;
    line-height: 1.5;
}

.hero-cta {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.section {
    padding: 100px 40px;
}

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

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

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

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 60px;
    line-height: 1.6;
}

.story-flow {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.story-block {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 600;
}

.story-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 15px;
}

.story-image {
    flex: 1;
    background-color: #dcd3c8;
}

.story-image img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
    border: 1px solid var(--border);
}

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

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

.service-content {
    padding: 30px;
}

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

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

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

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

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

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

.ingredients-section {
    background: var(--white);
    padding: 80px 40px;
}

.ingredients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.ingredient-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    padding: 25px;
    background: var(--light);
    border-radius: 6px;
}

.ingredient-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 600;
}

.ingredient-item p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.ingredient-item sup {
    color: var(--secondary);
    font-weight: 700;
    cursor: pointer;
}

.ingredient-item sup:hover {
    text-decoration: underline;
}

.testimonials-section {
    background: var(--light);
    padding: 80px 40px;
}

.testimonials-flow {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}

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

.testimonial-author {
    font-size: 15px;
    color: var(--gray);
    font-weight: 500;
}

.form-section {
    padding: 100px 40px;
    background: var(--white);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    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(--primary);
}

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

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

.submit-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.disclaimer-box {
    margin-top: 60px;
    padding: 25px;
    background: var(--light);
    border-left: 3px solid var(--secondary);
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray);
}

.references-section {
    padding: 60px 40px;
    background: var(--light);
}

.references-section h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 600;
}

.references-list {
    font-size: 14px;
    line-height: 2;
    color: var(--gray);
}

.references-list a {
    color: var(--primary);
    word-break: break-all;
}

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

.footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 40px 30px;
}

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

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

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

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.8;
    color: var(--light);
}

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

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

.footer-section a {
    color: var(--light);
    transition: color 0.3s;
}

.footer-section 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;
    color: var(--light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px 40px;
    display: none;
    z-index: 2000;
    border-top: 2px solid var(--secondary);
}

.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: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.page-header {
    margin-top: 80px;
    padding: 80px 40px;
    background: var(--light);
    text-align: center;
}

.page-header h1 {
    font-size: 54px;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: -1px;
}

.page-content {
    padding: 80px 40px;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 600;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--dark);
    font-weight: 600;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

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

.page-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 10px;
}

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

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

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 10px;
}

.contact-email {
    color: var(--gray);
    pointer-events: none;
    user-select: text;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.6;
}

.thanks-content a {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    transition: all 0.3s;
}

.thanks-content a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        display: none;
        border-bottom: 1px solid var(--border);
    }

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

    .hamburger {
        display: flex;
    }

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

    .hero-overlay p {
        font-size: 18px;
    }

    .story-block {
        flex-direction: column !important;
    }

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

    .service-card {
        min-width: 100%;
    }

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

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