/* ============================================
   CSS VARIABLES & RESET
   ============================================ */

:root {
    /* Colors */
    --charcoal: #3a3a3a;
    --sage: #9fad7f;
    --terracotta: #d4896f;
    --cream: #faf8f5;
    --cream-dark: #f0ede7;
    --white: #ffffff;
    --text-dark: #2a2a2a;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;
    
    /* Typography */
    --font-heading: 'Crimson Text', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

/* Subtle grain texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

a:hover {
    color: var(--terracotta);
}

strong {
    color: var(--text-dark);
    font-weight: 600;
}

ul {
    list-style: none;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.container.narrow {
    max-width: 800px;
}

section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse > * {
    direction: ltr;
}

@media (max-width: 768px) {
    .split-content,
    .split-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    background: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(159, 173, 127, 0.15);
    backdrop-filter: blur(10px);
}

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

.logo {
    text-decoration: none;
}

.logo-img {
    height: 120px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.nav-links .nav-cta {
    background: var(--sage);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
}

.nav-links .nav-cta:hover {
    background: var(--terracotta);
    color: var(--white);
}

@media (max-width: 640px) {
    .logo-img {
        height: 80px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--sage);
    color: var(--white);
    transform: translateY(-2px);
}

.btn.large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn.full-width {
    width: 100%;
}

.text-link {
    color: var(--sage);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.text-link:hover {
    border-bottom-color: var(--terracotta);
    color: var(--terracotta);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(159, 173, 127, 0.3) 0%, rgba(212, 137, 111, 0.2) 100%);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.hero-image-placeholder {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    border: 2px dashed rgba(159, 173, 127, 0.4);
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-image-container::before {
        top: -10px;
        right: -10px;
    }

    .hero-image-container img {
        box-shadow: var(--shadow-md);
    }

    .hero-image-placeholder {
        min-height: 250px;
        padding: 2rem 1.5rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
    }
}

/* ============================================
   SECTION UTILITIES
   ============================================ */

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.emphasis {
    background: var(--cream-dark);
    padding: 1.5rem;
    border-left: 4px solid var(--sage);
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
}

/* ============================================
   PROBLEM-SOLUTION SECTION
   ============================================ */

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

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    padding: 2rem;
    background: var(--cream);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.problem-card p {
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 640px) {
    .problems-grid {
        grid-template-columns: 1fr;
    }
}

.solution-statement {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(159, 173, 127, 0.1) 0%, rgba(212, 137, 111, 0.1) 100%);
    border-radius: var(--radius-md);
    text-align: center;
}

.solution-statement p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* ============================================
   WHAT IT DOES SECTION
   ============================================ */

.what-it-does {
    background: var(--cream);
}

.feature-list {
    margin: 2rem 0;
    padding-left: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ============================================
   VISUAL PLACEHOLDERS
   ============================================ */

.visual-placeholder {
    background: var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    border: 2px dashed rgba(159, 173, 127, 0.3);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder.large {
    min-height: 400px;
}

.visual-placeholder.portrait {
    min-height: 450px;
}

/* ============================================
   CONTENT IMAGES (split-content sections)
   ============================================ */

.content-visual {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.content-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.content-visual img.portrait {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-image img.portrait {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-image img.large {
    max-height: 500px;
    object-fit: cover;
}

/* ============================================
   MEET PEN SECTION
   ============================================ */

.meet-pen {
    background: var(--white);
}

.meet-pen p {
    margin-bottom: 1.2rem;
}

.pen-highlights {
    margin: 1.5rem 0;
    padding-left: 0;
}

.pen-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.pen-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
}

/* ============================================
   DEMO PROCESS SECTION
   ============================================ */

.demo-process {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

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

.step p {
    font-size: 0.95rem;
    margin: 0;
}

.demo-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--sage);
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.attribution {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

/* ============================================
   RESOURCES / VIDEO SECTION
   ============================================ */

.resources {
    background: var(--cream);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.video-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.video-placeholder {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-style: italic;
    position: relative;
}

.video-placeholder p {
    color: rgba(250, 248, 245, 0.6);
    font-size: 0.85rem;
    margin: 0;
    padding: 0 1rem;
    text-align: center;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover .play-button {
    background: var(--terracotta);
    transform: scale(1.1);
}

.video-thumbnail {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--cream-dark);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.video-card h3 {
    font-size: 1.2rem;
    margin: 1.5rem 1.5rem 0.5rem;
    color: var(--charcoal);
}

.video-card p {
    font-size: 0.95rem;
    margin: 0 1.5rem 1.5rem;
    color: var(--text-medium);
}

@media (max-width: 900px) {
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================
   FAVORITE RECIPES SECTION
   ============================================ */

.favorite-recipes {
    background: var(--white);
    overflow: hidden;
}

.recipes-header {
    text-align: center;
    margin-bottom: 3rem;
}

.recipes-header h2 {
    margin-bottom: 1rem;
}

.recipes-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.recipe-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.recipe-image-placeholder {
    background: linear-gradient(135deg, var(--cream-dark) 0%, #e8e5de 100%);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.85rem;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(159, 173, 127, 0.2);
}

.recipe-image-placeholder p {
    margin: 0;
}

.recipe-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-bottom: 1px solid rgba(159, 173, 127, 0.2);
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.05);
}

.recipe-content {
    padding: 1.25rem;
}

.recipe-tag {
    display: inline-block;
    background: rgba(159, 173, 127, 0.2);
    color: var(--sage);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}

.recipe-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.recipe-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recipe-content h3 a:hover {
    color: var(--terracotta);
}

a.recipe-image {
    display: block;
}

.recipe-content p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.recipe-time {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--terracotta);
    font-weight: 500;
}

.recipe-time::before {
    content: '⏱';
    margin-right: 0.4rem;
}

.recipes-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(159, 173, 127, 0.1) 0%, rgba(212, 137, 111, 0.1) 100%);
    border-radius: var(--radius-lg);
}

.recipes-cta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .recipes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .recipes-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ============================================
   FAQs SECTION
   ============================================ */

.faqs {
    background: var(--cream);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--charcoal);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin: 0;
    line-height: 1.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
    background: linear-gradient(135deg, rgba(159, 173, 127, 0.15) 0%, rgba(212, 137, 111, 0.15) 100%);
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.final-note {
    font-size: 0.95rem;
    color: var(--text-light);
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-heading {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
    color: var(--cream);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

.footer-col .small {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 245, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

/* ============================================
   ABOUT PAGE SPECIFIC
   ============================================ */

.about-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 1rem;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.3rem;
}

.philosophy {
    background: var(--cream);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.philosophy-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.philosophy-card h3 {
    color: var(--sage);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.philosophy-card p {
    margin: 0;
    font-size: 0.95rem;
}

.who-i-help {
    background: var(--white);
}

.help-list {
    margin: 1.5rem 0;
}

.help-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.help-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
}

.personal-touch {
    background: linear-gradient(135deg, rgba(159, 173, 127, 0.1) 0%, rgba(212, 137, 111, 0.1) 100%);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */

.contact-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    text-align: center;
}

.contact-hero h1 {
    margin-bottom: 1rem;
}

.contact-form-section {
    background: var(--white);
}

.contact-intro {
    margin-bottom: 3rem;
}

.contact-intro h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.steps-simple {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.simple-step {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.simple-step strong {
    color: var(--sage);
    margin-right: 0.5rem;
}

.contact-form-container {
    background: var(--cream);
    padding: 3rem;
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.6;
}

.alternate-contact {
    text-align: center;
    padding: 2rem;
    background: var(--cream-dark);
    border-radius: var(--radius-md);
    margin-top: 2rem;
}

.alternate-contact h3 {
    margin-bottom: 1rem;
}

.contact-options {
    margin-top: 1.5rem;
}

.contact-options p {
    margin-bottom: 0.5rem;
}

.reassurance {
    background: var(--cream);
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reassurance-item h3 {
    color: var(--sage);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.reassurance-item p {
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.fade-in.delay-1 {
    animation-delay: 0.2s;
}

.fade-in.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 1024px) {
    section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    section {
        padding: var(--spacing-md) 0;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: rotate(90deg);
}

.lightbox-caption {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1rem;
    text-align: center;
    max-width: 90%;
    opacity: 0.9;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-md);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .lightbox-caption {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        bottom: 1rem;
        max-width: 85%;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 80vh;
    }

    .lightbox-content img {
        max-height: 75vh;
    }
}

/* Make lightbox-enabled images show zoom cursor */
img[data-lightbox] {
    cursor: zoom-in;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img[data-lightbox]:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Recipe images lightbox specific */
.recipe-image img[data-lightbox]:hover {
    transform: scale(1.05);
}

/* ============================================
   SHOP PAGE SPECIFIC
   ============================================ */

.shop-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    text-align: center;
}

.shop-hero h1 {
    margin-bottom: 1rem;
}

/* Hero Product Section */
.hero-product {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.product-hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.product-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--terracotta);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.product-hero-details h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.product-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.product-hero-features {
    margin-bottom: 2.5rem;
}

.product-hero-features h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.product-hero-features ul {
    list-style: none;
    padding: 0;
}

.product-hero-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.6;
}

.product-hero-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
    font-size: 1.2rem;
}

.product-hero-pricing {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.price-section {
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin: 0;
}

.product-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-guarantee {
    padding: 1.5rem;
    background: var(--cream-dark);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--sage);
}

.product-guarantee p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.product-guarantee p:last-child {
    margin-bottom: 0;
}

/* Accessories Section */
.accessories {
    background: var(--cream);
}

.accessories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.accessory-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.accessory-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.accessory-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.accessory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.accessory-card:hover .accessory-image img {
    transform: scale(1.05);
}

.accessory-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.accessory-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--charcoal);
}

.accessory-content > p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.accessory-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex: 1;
}

.accessory-benefits li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.accessory-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
}

.accessory-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
}

.accessory-price {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--charcoal);
    margin: 0;
}

.accessory-footer .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
}

/* Why Buy From Me */
.why-buy-from-me {
    background: var(--white);
}

.why-buy-from-me h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.why-buy-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.why-buy-image img {
    width: 100%;
    max-height: 450px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: top;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item {
    padding: 2rem;
    background: var(--cream);
    border-radius: var(--radius-md);
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--sage);
    margin-bottom: 0.8rem;
}

.benefit-item p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* Shop Page Responsive */
@media (max-width: 1024px) {
    .accessories-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-hero-cta {
        flex-direction: column;
    }

    .product-hero-cta .btn {
        width: 100%;
    }

    .why-buy-layout {
        grid-template-columns: 1fr;
    }

    .why-buy-image img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HERO BUY NOW BUTTON OVERLAY
   ============================================ */

.hero-image-container {
    position: relative;
}

.hero-buy-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: calc(100% - 3rem);
    max-width: 350px;
}

.hero-buy-overlay .btn {
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.2rem 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .hero-buy-overlay {
        position: static;
        transform: none;
        width: 100%;
        max-width: none;
        margin-top: 1.5rem;
    }

    .hero-buy-overlay .btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        box-shadow: var(--shadow-sm);
    }
}

/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */

.social-feed {
    background: var(--cream);
    padding: var(--spacing-xl) 0;
}

.social-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.social-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-tab:hover {
    border-color: var(--sage);
    color: var(--sage);
    transform: translateY(-2px);
}

.social-tab.active {
    background: var(--sage);
    border-color: var(--sage);
    color: var(--white);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.social-content {
    position: relative;
    min-height: 400px;
}

.social-platform-content {
    display: none;
    animation: fadeIn 0.4s ease-in;
}

.social-platform-content.active {
    display: block;
}

.social-feed-grid {
    margin-bottom: 2rem;
}

/* Social Profile Cards */
.social-profile-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.social-profile-header {
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-profile-header.instagram-gradient {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.social-profile-header.youtube-bg {
    background: #ff0000;
}

.social-profile-icon {
    width: 64px;
    height: 64px;
    color: var(--white);
}

.social-profile-body {
    padding: 2rem;
    text-align: center;
}

.social-profile-body h3 {
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.social-profile-name {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.social-profile-body p:last-child {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.social-profile-header.facebook-bg {
    background: #1877f2;
}

.fb-embed-wrapper {
    display: flex;
    justify-content: center;
}

.fb-embed-wrapper iframe {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Social Embed Placeholder */
.social-embed-placeholder {
    background: var(--white);
    border: 2px dashed var(--cream-dark);
    border-radius: var(--radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    color: var(--sage);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.social-embed-placeholder h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.social-embed-placeholder p {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.placeholder-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    max-width: 500px;
}

/* Facebook Page Plugin Container */
.fb-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    min-height: 400px;
}

.fb-page-container iframe {
    max-width: 100%;
    border-radius: var(--radius-md);
}

.social-follow-button {
    text-align: center;
    margin-top: 2rem;
}

.social-follow-button .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Social Media Responsive */
@media (max-width: 768px) {
    .social-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .social-tab {
        justify-content: center;
    }

    .social-embed-placeholder {
        padding: 3rem 1.5rem;
        min-height: 300px;
    }

    .placeholder-icon {
        width: 60px;
        height: 60px;
    }
}

/* ============================================
   FOOTER SOCIAL ICONS
   ============================================ */

.footer-social {
    text-align: center;
    padding: 2.5rem 0 2rem;
    border-bottom: 1px solid rgba(250, 248, 245, 0.2);
    margin-bottom: 2rem;
}

.footer-social-title {
    color: var(--cream);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(250, 248, 245, 0.1);
    color: var(--cream);
    transition: all 0.3s ease;
}

.social-icon-link svg {
    width: 20px;
    height: 20px;
}

.social-icon-link:hover {
    transform: translateY(-3px);
    background: rgba(250, 248, 245, 0.2);
}

.social-icon-link.facebook:hover {
    background: #1877f2;
    color: var(--white);
}

.social-icon-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-icon-link.youtube:hover {
    background: #ff0000;
    color: var(--white);
}

@media (max-width: 768px) {
    .footer-social-icons {
        gap: 1rem;
    }

    .social-icon-link {
        width: 40px;
        height: 40px;
    }

    .social-icon-link svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   BECOME A CONSULTANT PAGE
   ============================================ */

.consultant-hero {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--sage) 0%, #7a9d7e 100%);
    color: var(--white);
    text-align: center;
}

.consultant-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.consultant-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
}

/* Introduction Section */
.consultant-intro {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.intro-content .lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

/* Why Consultant Benefits */
.why-consultant {
    background: var(--cream);
    padding: var(--spacing-xl) 0;
}

.benefits-large-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-large {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.benefit-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-large h3 {
    font-size: 1.6rem;
    color: var(--sage);
    margin-bottom: 1rem;
}

.benefit-large p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Role Section */
.consultant-role {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.role-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.role-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.role-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.role-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.role-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Requirements Section */
.consultant-requirements {
    background: var(--cream);
    padding: var(--spacing-xl) 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.requirement-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--terracotta);
}

.requirement-card h3 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
}

.requirement-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Earnings Section */
.consultant-earnings {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.earnings-breakdown {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.earnings-item {
    padding: 2rem;
    background: var(--cream);
    border-radius: var(--radius-md);
}

.earnings-item h3 {
    font-size: 1.3rem;
    color: var(--sage);
    margin-bottom: 0.8rem;
}

.earnings-item p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.earnings-note {
    background: var(--cream-dark);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--terracotta);
}

.earnings-note p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Story Section */
.consultant-story {
    background: var(--cream);
    padding: var(--spacing-xl) 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Next Steps Section */
.consultant-next-steps {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

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

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

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

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Consultant FAQs */
.consultant-faqs {
    background: var(--cream);
    padding: var(--spacing-xl) 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Consultant Page Responsive */
@media (max-width: 1024px) {
    .benefits-large-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .role-item,
    .process-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    .role-number,
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .benefit-large {
        padding: 1.5rem;
    }

    .consultant-hero {
        padding: 4rem 0 2rem;
    }
}

/* ============================================
   SMALL CONSULTANT CTA (For other pages)
   ============================================ */

.consultant-cta-small {
    background: var(--cream-dark);
    padding: 3rem 0;
}

.consultant-cta-content {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--sage);
}

.consultant-cta-content h3 {
    font-size: 1.6rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.consultant-cta-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.consultant-cta-content .btn {
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .consultant-cta-small {
        padding: 2rem 0;
    }

    .consultant-cta-content {
        padding: 1.5rem;
    }

    .consultant-cta-content h3 {
        font-size: 1.3rem;
    }
}

/* ============================================
   COLLAPSIBLE TM7 MODES SECTION
   ============================================ */

.tm7-modes-details {
    margin-top: 2rem;
    border: 1px solid var(--sage-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.tm7-modes-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--sage-light), #e8ecd8);
    cursor: pointer;
    font-weight: 500;
    color: var(--charcoal);
    list-style: none;
    transition: background var(--transition-fast);
}

.tm7-modes-summary::-webkit-details-marker {
    display: none;
}

.tm7-modes-summary:hover {
    background: linear-gradient(135deg, var(--sage), #d4dbc6);
}

.tm7-modes-summary span {
    font-size: 1rem;
}

.chevron-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-fast);
}

details[open] .chevron-icon {
    transform: rotate(180deg);
}

.tm7-modes-content {
    padding: 1.5rem;
    background: var(--white);
}

.modes-category {
    margin-bottom: 1.5rem;
}

.modes-category:last-child {
    margin-bottom: 0;
}

.modes-category h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--sage-light);
}

.modes-category ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.modes-category li {
    font-size: 0.9rem;
    color: var(--text-medium);
    padding: 0.25rem 0;
}

.modes-category li strong {
    color: var(--charcoal);
}

@media (max-width: 768px) {
    .modes-category ul {
        grid-template-columns: 1fr;
    }

    .tm7-modes-summary {
        padding: 0.875rem 1rem;
    }

    .tm7-modes-content {
        padding: 1rem;
    }
}

/* ============================================
   CONSULTANT HERO BOX (Landing Page)
   ============================================ */

.consultant-hero-box {
    background: linear-gradient(135deg, var(--sage-light), #e8ecd8);
    padding: 4rem 0;
}

.consultant-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.consultant-hero-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.consultant-hero-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.consultant-hero-lead {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 1.5rem;
}

.consultant-hero-content > p:not(.consultant-hero-lead) {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.consultant-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .consultant-hero-box {
        padding: 2rem 0;
    }

    .consultant-hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .consultant-hero-content h2 {
        font-size: 1.5rem;
    }

    .consultant-hero-lead {
        font-size: 1.2rem;
    }
}

/* ============================================
   COOKIDOO HERO BOX
   ============================================ */

.cookidoo-hero-box {
    background: linear-gradient(135deg, #fff9e6, #fff5d6);
    padding: 4rem 0;
}

.cookidoo-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--terracotta);
}

.cookidoo-hero-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cookidoo-hero-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.cookidoo-hero-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--terracotta);
    margin-bottom: 2rem;
}

.cookidoo-features {
    text-align: left;
    margin-bottom: 2rem;
}

.cookidoo-features ul {
    list-style: none;
    padding: 0;
}

.cookidoo-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 1rem;
    color: var(--text-medium);
}

.cookidoo-features li:last-child {
    border-bottom: none;
}

.cookidoo-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
}

.cookidoo-features li strong {
    color: var(--charcoal);
}

.cookidoo-hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookidoo-hero-box {
        padding: 2rem 0;
    }

    .cookidoo-hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .cookidoo-hero-content h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   RECIPE CARD HOVER IMAGES
   ============================================ */

.recipe-hover-image {
    position: relative;
    display: block;
    overflow: hidden;
}

.recipe-hover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition-normal);
}

.recipe-img-default {
    display: block;
}

.recipe-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.recipe-hover-image:hover .recipe-img-default {
    opacity: 0;
}

.recipe-hover-image:hover .recipe-img-hover {
    opacity: 1;
}

/* Basics recipes grid - 3 columns */
.recipes-grid-basics {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .recipes-grid-basics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .recipes-grid-basics {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONSULTANT VALUE SECTION (About page)
   ============================================ */

.consultant-value-section {
    background: linear-gradient(135deg, var(--sage-light), #e8ecd8);
    padding: 4rem 0;
}

.consultant-value-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.consultant-value-content h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.consultant-value-content .lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 1.5rem;
}

.consultant-value-content p:not(.lead) {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .consultant-value-section {
        padding: 2rem 0;
    }

    .consultant-value-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .consultant-value-content h2 {
        font-size: 1.4rem;
    }

    .consultant-value-content .lead {
        font-size: 1.2rem;
    }
}

/* ============================================
   CONSULTANT PAGE - SIMPLIFIED STYLES
   ============================================ */

.consultant-community {
    background: var(--cream);
    padding: 4rem 0;
}

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

.community-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.community-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.consultant-learn-more {
    background: linear-gradient(135deg, var(--sage-light), #e8ecd8);
    padding: 4rem 0;
}

.learn-more-content {
    text-align: center;
}

.learn-more-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.learn-more-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

/* Emphasis text styling */
.emphasis {
    font-weight: 500;
    color: var(--sage-dark);
    font-style: italic;
}

/* ============================================
   ACCESSORIES GRID - 3 COLUMN LAYOUT
   ============================================ */

.accessories-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .accessories-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .accessories-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COOKIDOO FEATURED SECTION (Wide Card)
   ============================================ */

.cookidoo-featured {
    margin-top: 3rem;
}

.cookidoo-featured-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--sage-light);
}

.cookidoo-featured-image {
    position: relative;
    min-height: 300px;
}

.cookidoo-featured-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cookidoo-featured-content {
    padding: 2.5rem 2.5rem 2.5rem 0;
    display: flex;
    flex-direction: column;
}

.cookidoo-featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    width: fit-content;
}

.cookidoo-featured-content h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.cookidoo-featured-intro {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cookidoo-featured-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.cookidoo-feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cookidoo-feature-item strong {
    color: var(--charcoal);
    font-size: 0.95rem;
}

.cookidoo-feature-item span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.cookidoo-featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream-dark);
}

.cookidoo-featured-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
}

.cookidoo-featured-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-medium);
}

.cookidoo-featured-ctas {
    display: flex;
    gap: 0.75rem;
}

/* Tablet Responsive */
@media (max-width: 900px) {
    .cookidoo-featured-inner {
        grid-template-columns: 1fr 1.5fr;
        gap: 1.5rem;
    }

    .cookidoo-featured-content {
        padding: 2rem 2rem 2rem 0;
    }

    .cookidoo-featured-content h3 {
        font-size: 1.5rem;
    }

    .cookidoo-featured-features {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .cookidoo-featured-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cookidoo-featured-image {
        min-height: 200px;
    }

    .cookidoo-featured-content {
        padding: 1.5rem;
    }

    .cookidoo-featured-content h3 {
        font-size: 1.4rem;
    }

    .cookidoo-featured-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookidoo-featured-ctas {
        width: 100%;
        flex-direction: column;
    }

    .cookidoo-featured-ctas .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   Sticky Social Sidebar
   ============================================ */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 0 8px 8px 0;
    overflow: hidden;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.15);
}

.social-sidebar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    transition: padding-right 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

.social-sidebar-link:hover {
    opacity: 1;
    padding-right: 8px;
}

.social-sidebar-link.facebook { background: #1877f2; }
.social-sidebar-link.instagram { background: #e1306c; }
.social-sidebar-link.youtube { background: #ff0000; }

/* Hide on mobile — icons would obscure content */
@media (max-width: 768px) {
    .social-sidebar {
        display: none;
    }
}

/* ============================================
   Cookidoo Link Card (Shop page)
   ============================================ */
.cookidoo-link-card {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--warm-white, #faf9f7);
    border: 1px solid var(--border-light, #e8e4df);
    border-radius: 12px;
    text-align: center;
}

.cookidoo-link-card p {
    margin-bottom: 1.25rem;
    color: var(--text-medium, #5a5a5a);
}

/* ============================================
   Cookidoo Pricing Box (Cookidoo page)
   ============================================ */
.cookidoo-pricing-box {
    margin-top: 2rem;
    padding: 1.75rem 2rem;
    background: var(--warm-white, #faf9f7);
    border: 1px solid var(--border-light, #e8e4df);
    border-left: 4px solid var(--terracotta, #c4634f);
    border-radius: 8px;
}

.cookidoo-pricing-box h3 {
    font-family: var(--font-heading, 'Crimson Text', serif);
    color: var(--charcoal, #2c2c2c);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.cookidoo-pricing-box p {
    margin-bottom: 1.25rem;
    color: var(--text-medium, #4a4a4a);
}
