/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513;
    --primary-dark: #5D2F0E;
    --primary-light: #A0522D;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --text-dark: #2C2C2C;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --bg-white: #FFFFFF;
    --bg-cream: #FFF8F0;
    --bg-light: #F9F5F0;
    --bg-dark: #F4EDE4;
    --border-color: #E0D5C7;
    --success-color: #4CAF50;
    --error-color: #D32F2F;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.9rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
}

/* Container Utilities */
.content-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.nav-minimal {
    background: var(--bg-white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-medium);
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-visual {
    min-height: 550px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1596040033229-a0b3b22af850?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
}

.hero-overlay {
    max-width: 800px;
    color: white;
}

.hero-overlay h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Sections */
section {
    padding: 4rem 0;
}

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

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

.insight-reveal {
    background: var(--bg-light);
    text-align: center;
}

.about-reveal {
    background: var(--bg-white);
}

.trust-build {
    background: var(--bg-dark);
}

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

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

.how-it-works {
    background: var(--bg-light);
}

.services-pricing {
    background: var(--bg-white);
}

.urgency-section {
    background: var(--secondary-color);
    color: white;
}

.urgency-content {
    text-align: center;
}

.urgency-section h3,
.urgency-section p,
.urgency-section strong {
    color: white;
}

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

.final-cta {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.final-cta h2,
.final-cta p {
    color: white;
}

/* Page Hero */
.page-hero {
    background: var(--bg-light);
    padding: 4rem 0 3rem;
    text-align: center;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 400;
}

/* Content Splits */
.content-split {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.split-text,
.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
}

.emphasis {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

/* Trust Points */
.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.trust-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonial {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.author {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.benefit-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    color: var(--primary-color);
}

/* Steps */
.steps {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step h4 {
    margin-bottom: 0.5rem;
}

/* Pricing Grid */
.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border-color: var(--primary-color);
    background: var(--bg-cream);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.description {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.unit {
    font-size: 1rem;
    color: var(--text-light);
}

/* Buttons */
.cta-primary,
.cta-secondary,
.cta-submit,
.select-btn,
.cta-outline {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: inherit;
}

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

.cta-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

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

.cta-secondary:hover {
    background: var(--primary-dark);
    color: white;
}

.cta-inline {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
}

.cta-submit,
.select-btn {
    background: var(--primary-color);
    color: white;
    width: 100%;
    margin-top: 1rem;
}

.cta-submit:hover,
.select-btn:hover {
    background: var(--primary-dark);
}

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

.cta-outline:hover {
    background: var(--primary-color);
    color: white;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Forms */
.order-form {
    margin-top: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-intro {
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

/* About Grid */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.about-image,
.about-content {
    flex: 1;
}

.about-image img {
    border-radius: 8px;
}

/* Process Grid */
.process-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* Service Cards */
.service-card-large {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    align-self: flex-start;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.ingredient-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0 2rem;
}

.ingredient-item {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.blend-list {
    list-style: none;
    margin: 1.5rem 0 2rem;
}

.blend-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.blend-list li:last-child {
    border-bottom: none;
}

.custom-steps {
    margin: 1.5rem 0 2rem;
    padding-left: 1.5rem;
}

.custom-steps li {
    margin-bottom: 1rem;
}

.custom-note,
.set-note {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
}

/* Contact */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info,
.contact-form-section {
    flex: 1;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note h4 {
    margin-bottom: 1rem;
}

.contact-note ul {
    list-style-position: inside;
}

/* FAQ */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

/* Info Grid */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.info-item {
    background: var(--bg-cream);
    padding: 1.5rem;
    border-radius: 8px;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Thanks Page */
.thanks-hero {
    background: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    font-size: 3rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.order-summary {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.steps-vertical {
    margin-top: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.step-item:last-child {
    border-bottom: none;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.selected-service {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.service-display {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-info,
.thanks-guarantee {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

/* Legal Content */
.legal-content {
    padding: 3rem 0;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-content h2:first-of-type {
    margin-top: 2rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.legal-content ul,
.legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-content th,
.legal-content td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.legal-content th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.rules-list {
    list-style: none;
    margin-left: 0;
}

.rules-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.rules-list li:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background: #45a049;
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn.reject:hover {
    background: white;
    color: var(--text-dark);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 99;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    text-align: center;
}

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

.cta-section {
    background: var(--bg-light);
    text-align: center;
}

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

.service-detail {
    padding: 2rem 0;
}

.story-section,
.mission-section,
.values-section,
.process-section,
.team-section,
.commitment-section {
    padding: 3rem 0;
}

.contact-main {
    padding: 3rem 0;
}

/* Tablet and up */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.3rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    .hero-overlay h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .content-split,
    .about-grid {
        flex-direction: row;
        align-items: center;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .pricing-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .price-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .trust-points {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .process-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .cta-group {
        flex-direction: row;
        justify-content: center;
    }

    .info-grid {
        flex-direction: row;
    }

    .info-item {
        flex: 1;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .benefits-grid {
        flex-wrap: nowrap;
    }

    .benefit-card {
        flex: 1;
    }

    .pricing-grid {
        flex-wrap: wrap;
    }

    .price-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .trust-points {
        flex-wrap: nowrap;
    }

    .trust-item {
        flex: 1;
    }

    .process-grid {
        flex-wrap: nowrap;
    }

    .process-step {
        flex: 1;
    }
}
