:root {
    --primary-color: #5a4a42;
    --secondary-color: #8c7b70;
    --background-color: #fdfaf6;
    --surface-color: #f5f0e6;
    --accent-color: #a47c48;
    --text-color: #3d3d3d;
    --light-text-color: #fdfaf6;
    --border-color: #e0d8cd;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-headings: 'Georgia', 'Times New Roman', serif;
    --container-padding: 1rem;
    --container-width: calc(1200px + var(--container-padding) * 2);
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-headings);
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 400;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 2.75rem); text-align: center; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; }
a { color: var(--accent-color); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--primary-color); }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: hidden;
}

.cta-button, .secondary-link {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--light-text-color);
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    transform: translateY(-3px);
}

.secondary-link {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.secondary-link:hover {
    background-color: var(--accent-color);
    color: var(--light-text-color);
}

.site-header {
    width: 100%;
    padding: 1rem 0;
    background-color: var(--background-color);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img { height: 40px; }

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after { width: 100%; }
.burger-menu { display: none; }

.hero-section { min-height: 80vh; display: flex; align-items: center; }
.hero-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; }
.hero-content { padding-right: 2rem; }
.hero-image-container img { border-radius: 10px; }

.featured-products-slider { text-align: center; }
.slider-container { position: relative; }
.slider-wrapper { display: flex; overflow-x: scroll; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.slider-wrapper::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 33.33%; padding: 1rem; text-align: center; scroll-snap-align: center; }
.slide img { border-radius: 8px; margin-bottom: 1rem; aspect-ratio: 1 / 1; object-fit: cover; width: 100%;}
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background-color: var(--primary-color); color: white; border: none; font-size: 1.5rem; cursor: pointer; z-index: 10; width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0.8; transition: opacity 0.3s; }
.slider-btn:hover { opacity: 1; }
.slider-btn.prev { left: -20px; }
.slider-btn.next { right: -20px; }

.art-of-brewing-section .brewing-content { max-width: 800px; margin: 0 auto 3rem; }
.brewing-cards-container { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.brewing-card { position: relative; overflow: hidden; border-radius: 8px; }
.brewing-card img { transition: transform 0.4s ease; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.brewing-card:hover img { transform: scale(1.05); }
.card-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); padding: 1rem; }
.card-overlay h3 { color: var(--light-text-color); }

.accordion-container { max-width: 800px; }
.accordion-item { border-bottom: 1px solid var(--border-color); }
.accordion-header { background: none; border: none; width: 100%; text-align: left; padding: 1.5rem 1rem; font-size: 1.25rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--primary-color); font-family: var(--font-headings); }
.accordion-icon { font-size: 1.5rem; transition: transform 0.3s ease; }
.accordion-header.active .accordion-icon { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background-color: #fff; }
.accordion-content p { padding: 1.5rem; margin: 0; }

.subscription-spotlight-section { background-color: var(--surface-color); }
.subscription-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.subscription-text h2 { text-align: left; }
.subscription-image img { border-radius: 10px; }

.new-arrivals-feature-section h2 { margin-bottom: 3rem; }
.arrivals-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; gap: 1rem; }
.grid-item { position: relative; border-radius: 8px; overflow: hidden; }
.grid-item img { width: 100%; height: 100%; object-fit: cover; }
.grid-item.large { grid-row: 1 / 3; }
.grid-item-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; color: var(--light-text-color); background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.grid-item-overlay h3 { color: var(--light-text-color); margin: 0; font-size: 1.2rem; }
.grid-item-overlay p { margin: 0; font-size: 0.9rem; }
.arrivals-link-container { text-align: center; margin-top: 2rem; }

.tea-sanctuary-section .sanctuary-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sanctuary-content h2 { text-align: left; }
.sanctuary-image img { border-radius: 10px; }

.why-us-section { background-color: var(--surface-color); }
.why-us-intro { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.why-us-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.why-us-card { background-color: var(--background-color); padding: 2rem; border-radius: 8px; }
.why-us-card h3 { margin-bottom: 1rem; }
.why-us-card.image-card { padding: 0; grid-row: 1 / 3; grid-column: 2 / 3; }
.why-us-card.image-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.philosophy-section .philosophy-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.philosophy-text h2 { text-align: left; }
.philosophy-image img { border-radius: 10px; }

.our-promise-section { background-color: #ffffff; border: 1px solid var(--border-color); }
.promise-container { text-align: center; }
.our-promise-section h2 { color: var(--primary-color); }
.our-promise-section p { color: var(--text-color); }
.our-promise-section .cta-button { background-color: var(--accent-color); color: var(--light-text-color); }

.site-footer { background-color: var(--primary-color); color: var(--light-text-color); padding: 4rem 0; }
.footer-container { display: flex; justify-content: space-between; gap: 3rem; }
.footer-brand { flex: 2; }
.footer-logo img { height: 40px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p {
    color: var(--border-color);
    font-size: 0.9rem;
    max-width: 350px;
}
.footer-links { flex: 3; display: flex; justify-content: space-around; gap: 1rem; }
.footer-column h4 { color: #fff; margin-bottom: 1rem; font-family: var(--font-primary); font-weight: 600; }
.footer-column ul li { margin-bottom: 0.5rem; }
.footer-column a {
    color: var(--light-text-color);
    text-decoration: none;
    transition: color 0.3s, text-decoration 0.3s;
}
.footer-column a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .why-us-grid { grid-template-columns: 1fr; }
    .why-us-card.image-card { grid-row: auto; grid-column: auto; height: 300px; }
}

@media (max-width: 768px) {
    .main-nav { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background-color: var(--background-color); 
        flex-direction: column; 
        text-align: center; 
        border-top: 1px solid var(--border-color); 
        padding: 1rem 0;
    }
    .main-nav.active { display: flex; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav li { width: 100%; }
    .main-nav a { display: block; padding: 1.2rem; }
    .main-nav a:hover::after { width: 0; }
    .main-nav a:hover { background-color: var(--surface-color); }
    
    .burger-menu { 
        display: flex; 
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        gap: 6px; 
        width: 30px; 
        height: 30px; 
        background: transparent; 
        border: none; 
        cursor: pointer; 
        z-index: 101; 
    }
    .burger-bar { 
        width: 30px; 
        height: 3px; 
        background-color: var(--primary-color); 
        border-radius: 5px; 
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out; 
        transform-origin: center; 
    }
    .burger-menu.active .burger-bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .burger-menu.active .burger-bar:nth-child(2) { opacity: 0; }
    .burger-menu.active .burger-bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    section { 
        padding-top: 3rem; 
        padding-bottom: 3rem; 
    }
    
    .hero-container, 
    .subscription-container, 
    .tea-sanctuary-section .sanctuary-container, 
    .philosophy-section .philosophy-container { 
        grid-template-columns: 1fr; 
    }

    .hero-content, 
    .subscription-text, 
    .sanctuary-content, 
    .philosophy-text { 
        padding: 0; 
        order: 2; 
        text-align: center; 
    }

    .hero-image-container, 
    .subscription-image, 
    .sanctuary-image, 
    .philosophy-image { 
        order: 1; 
        margin-bottom: 1rem; 
    }
    
    .subscription-text h2, 
    .sanctuary-content h2, 
    .philosophy-text h2 { 
        text-align: center; 
        margin-top: 1rem; 
    }
    
    .slide { flex: 0 0 80%; }
    .slider-btn.prev { left: 0; }
    .slider-btn.next { right: 0; }

    .brewing-cards-container, .arrivals-grid { grid-template-columns: 1fr; }
    .grid-item.large { grid-row: auto; }
    .footer-container { flex-direction: column; text-align: center; }
    .footer-brand p { margin: 0 auto; }
    .footer-links { justify-content: center; }
}

@media (max-width: 320px) {
    html { font-size: 14px; }
    .slide { flex: 0 0 95%; }
    .footer-links { flex-direction: column; gap: 2rem; }
}














.story-hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text-color);
    background-image: url('images/26.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.story-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.story-hero-content {
    position: relative;
    z-index: 2;
}

.story-hero-content h1 {
    color: var(--light-text-color);
}

.founders-spark-section .founders-spark-container,
.art-of-roasting-section .roasting-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founders-spark-section h2,
.art-of-roasting-section h2 {
    text-align: left;
}

.founders-spark-image img,
.roasting-image img {
    border-radius: 8px;
}

.sourcing-tabs-section {
    background-color: var(--surface-color);
}
.sourcing-tabs-container {
    max-width: 900px;
    margin: 0 auto;
}
.sourcing-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}
.sourcing-tab {
    padding: 1rem 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--secondary-color);
    position: relative;
    transition: color 0.3s ease;
}
.sourcing-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.sourcing-tab.active { color: var(--primary-color); }
.sourcing-tab.active::after { transform: scaleX(1); }
.sourcing-content { display: none; }
.sourcing-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; animation: fadeIn 0.5s ease; }
.sourcing-content img { border-radius: 8px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.core-values-section { background-color: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.value-card { background: var(--surface-color); padding: 2rem; border-radius: 8px; }
.value-image { grid-column: 3 / 4; grid-row: 1 / 3; }
.value-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.value-card.wide { grid-column: 1 / 3; }

.artisans-section { background-color: var(--background-color); }
.artisans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.artisan-card img { border-radius: 50%; aspect-ratio: 1 / 1; object-fit: cover; margin: 0 auto 1.5rem; max-width: 200px; filter: grayscale(100%); transition: filter 0.4s ease; }
.artisan-card:hover img { filter: grayscale(0%); }
.artisan-info h3 { margin-bottom: 0.5rem; }

.stats-section { background-color: var(--primary-color); color: #fff; }
.stats-container { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; }
.stat-number { font-family: var(--font-headings); font-size: clamp(3rem, 8vw, 4.5rem); line-height: 1; display: block; }
.stat-number::after { content: '+'; font-size: 0.5em; vertical-align: super; }
.stat-item:last-of-type .stat-number::after { content: '%'; }
.stat-item p { color: var(--secondary-color); margin-top: 0.5rem; }

.timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 2rem 0; }
.timeline::before { content: ''; position: absolute; left: 40px; top: 0; height: 100%; width: 2px; background: var(--border-color); }
.timeline-item { position: relative; padding-left: 100px; margin-bottom: 3rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-year { position: absolute; left: 0; top: 0; font-family: var(--font-headings); font-size: 1.5rem; color: var(--accent-color); background-color: var(--background-color); padding-right: 20px; }
.timeline-item-content h3 { margin-bottom: 0.5rem; }

.community-section { background-color: var(--surface-color); }
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.community-quote { background: #fff; padding: 2rem; border-radius: 8px; }
.community-quote p { font-family: var(--font-headings); font-size: 1.2rem; line-height: 1.5; margin-bottom: 1rem; }
.community-quote span { color: var(--secondary-color); }
.community-quote img { border-radius: 8px; }

.future-promise-section { background-color: #fff; border-top: 1px solid var(--border-color); }
.future-promise-container { max-width: 800px; text-align: center; }

@media (max-width: 768px) {
    .founders-spark-section .founders-spark-container,
    .art-of-roasting-section .roasting-container { grid-template-columns: 1fr; }
    .art-of-roasting-section .roasting-text { order: 2; }
    .art-of-roasting-section .roasting-image { order: 1; }
    .founders-spark-section h2,
    .art-of-roasting-section h2 { text-align: center; }
    
    .sourcing-content.active { grid-template-columns: 1fr; }
    .sourcing-content img { margin-bottom: 1rem; }
    
    .values-grid { grid-template-columns: 1fr; }
    .value-card, .value-image, .value-card.wide { grid-column: auto; grid-row: auto; }
    
    .artisans-grid, .stats-container { grid-template-columns: 1fr; gap: 3rem; }
    .community-grid { grid-template-columns: 1fr; }
    
    .timeline::before { left: 15px; }
    .timeline-item { padding-left: 55px; }
    .timeline-year { font-size: 1.2rem; padding-right: 10px; left: 0; }
}














body.modal-open {
    overflow: hidden;
}

.shop-hero-section {
    text-align: center;
    padding: 3rem 0;
    background-color: var(--surface-color);
}
.shop-hero-section h1 {
    margin-bottom: 0.5rem;
}

.filters-section {
    padding: 2rem 0;
    background-color: var(--background-color);
    z-index: 50;
    border-bottom: 1px solid var(--border-color);
}
.filters-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 1rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}
.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--primary-color);
}
.filter-btn.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--light-text-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.product-card {
    text-align: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.product-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.product-card h3 {
    margin-top: 1rem;
    padding: 0 1rem;
}
.product-card p {
    color: var(--secondary-color);
    padding: 0 1rem;
    font-size: 0.9rem;
}
.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.product-card .cta-button {
    display: block;
    width: 100%;
    border-radius: 0;
    padding: 1rem;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.guides-cta-section .guides-cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.guide-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: block;
}
.guide-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.guide-card:hover img {
    transform: scale(1.05);
}
.guide-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
.guide-card-overlay h3 {
    color: var(--light-text-color);
}

.quiz-cta-section {
    background-color: var(--surface-color);
    border-radius: 8px;
    text-align: center;
}

.subscription-cta-section {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}
.subscription-cta-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}
.subscription-cta-section h2, .subscription-cta-section p {
    color: var(--light-text-color);
}
.subscription-cta-section .cta-button {
    background-color: var(--light-text-color);
    color: var(--primary-color);
}
.subscription-cta-perks ul {
    list-style: '✓ ';
    padding-left: 1.5rem;
}
.subscription-cta-perks li {
    margin-bottom: 1rem;
}


.behind-the-beans-section .behind-the-beans-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.behind-the-beans-text h2 {
    text-align: left;
}
.behind-the-beans-image img {
    border-radius: 8px;
}

.quiz-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    animation: fadeIn 0.3s;
}
.quiz-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.quiz-modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideIn 0.3s;
}
@keyframes slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.close-quiz-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
}
.quiz-step { display: none; margin-top: 1.5rem; }
.quiz-step.active { display: block; }
.quiz-result { display: none; margin-top: 1.5rem; }
.quiz-answer-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 1rem;
    cursor: pointer;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

#quiz-result-content p {
    font-size: 1.1rem;
}

.cta-button, .secondary-link, .filter-btn, .close-quiz-btn, .quiz-answer-btn {
    cursor: pointer;
}

@media (max-width: 768px) {
    .guides-cta-container,
    .subscription-cta-container,
    .behind-the-beans-container {
        grid-template-columns: 1fr;
    }
    .behind-the-beans-text h2 {
        text-align: center;
    }
    .guides-cta-section .guides-cta-container,
    .subscription-cta-container,
    .behind-the-beans-section .behind-the-beans-container {
        grid-template-columns: 1fr;
    }
    .guides-cta-section .guides-cta-container {
        grid-template-columns: 1fr;
    }
    .behind-the-beans-image { order: 1; }
    .behind-the-beans-text { order: 2; }
}
























.guides-hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text-color);
    background-image: url('images/38.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.guides-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.guides-hero-content { position: relative; z-index: 2; }
.guides-hero-content h1, .guides-hero-content p { color: var(--light-text-color); }

.intro-philosophy-section .intro-philosophy-container {
    max-width: 800px;
    text-align: center;
}

.featured-guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
}
.featured-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    color: var(--light-text-color);
}
.featured-card.large { grid-column: 1 / 2; grid-row: 1 / 3; }
.featured-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.featured-card:hover img { transform: scale(1.05); }
.featured-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.featured-card-overlay p { margin: 0; color: var(--light-text-color); }
.featured-card-overlay h3 { color: var(--light-text-color); }

.methods-nav-section .methods-nav-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.method-nav-card {
    position: relative;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
}
.method-nav-card h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light-text-color);
    z-index: 2;
}
.method-nav-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4);
    transition: background-color 0.3s ease;
}
.method-nav-card:hover::after { background-color: rgba(0,0,0,0.2); }
.method-nav-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.guide-detail-section.alternate-bg { background-color: var(--surface-color); }
.guide-accordion-item { border-bottom: 1px solid var(--border-color); }
.guide-accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 1rem;
    font-size: 1.25rem;
    font-family: var(--font-headings);
    color: var(--primary-color);
    cursor: pointer;
    position: relative;
}
.guide-accordion-header::after { content: '+'; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); font-size: 1.5rem; transition: transform 0.3s ease; }
.guide-accordion-header.active::after { transform: translateY(-50%) rotate(45deg); }
.guide-accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; padding: 0 1rem; }
.guide-accordion-content p { padding-top: 1rem; }
.guide-accordion-content img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
}
.accordion-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: start;
    padding-top: 1rem;
}

.accordion-content-wrapper img {
    width: 200px;
    height: auto;
    /*flex-shrink: 0;*/
    border-radius: 8px;
}

.accordion-content-wrapper p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}
.guide-accordion-item.active .guide-accordion-content { padding-bottom: 1.5rem; }


.guide-tabs { display: flex; border-bottom: 1px solid var(--border-color); margin-bottom: 2rem; }
.guide-tab { padding: 1rem 1.5rem; cursor: pointer; background: none; border: none; font-size: 1.1rem; color: var(--secondary-color); position: relative; transition: color 0.3s ease; }
.guide-tab::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 2px; background-color: var(--accent-color); transform: scaleX(0); transition: transform 0.3s ease; }
.guide-tab.active { color: var(--primary-color); }
.guide-tab.active::after { transform: scaleX(1); }
.guide-tab-pane { display: none; }
.guide-tab-pane.active { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; align-items: center; animation: fadeIn 0.5s ease; }
.guide-tab-pane img {
    width: 100%;
    max-width: 300px; 
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto; 
}

.essential-gear-section { background-color: #fff; }
.gear-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.gear-item img { aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }
.gear-item p { margin-bottom: 1.5rem; }

.pro-tips-section { background-color: var(--surface-color); }
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.tip-card { background-color: #fff; padding: 2rem; border-radius: 8px; }

.cheatsheet-section .cheatsheet-table-wrapper { overflow-x: auto; }
.cheatsheet-section table { width: 100%; border-collapse: collapse; text-align: center; }
.cheatsheet-section th, .cheatsheet-section td { padding: 1rem; border-bottom: 1px solid var(--border-color); }
.cheatsheet-section th { font-family: var(--font-headings); color: var(--primary-color); }
.cheatsheet-section tbody tr:last-child td { border-bottom: none; }

.guides-cta-final { background-color: #fff; }
.guides-cta-final-container { max-width: 800px; text-align: center; }

@media (max-width: 768px) {
    .featured-guides-grid { grid-template-columns: 1fr; }
    .featured-card.large { grid-column: auto; grid-row: auto; }
    
    .methods-nav-section .methods-nav-container,
    .gear-grid,
    .tips-grid { grid-template-columns: 1fr; }
    .guide-tabs {
        flex-direction: column;
        border-bottom: none;
        align-items: stretch;
    }

    .guide-tab {
        border-bottom: 1px solid var(--border-color);
        text-align: center;
    }

    .guide-tab:last-child {
        border-bottom: none;
    }

    .guide-tab::after {
        display: none;
    }

    .guide-tab.active {
        background-color: var(--surface-color);
    }

    .guide-tab-pane.active {
        grid-template-columns: 1fr;
    }
    .guide-tab-pane.active { grid-template-columns: 1fr; }
    .guide-tab-pane img { margin-bottom: 1rem; }
}














.new-arrivals-hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text-color);
    background-image: url('images/56.webp');
    background-size: cover;
    background-position: center;
}
.new-arrivals-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.new-arrivals-hero-content { position: relative; z-index: 2; }
.new-arrivals-hero-content h1, .new-arrivals-hero-content p { color: var(--light-text-color); }

.featured-arrival-section { background-color: var(--surface-color); }
.featured-arrival-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.featured-arrival-image img { border-radius: 8px; }
.featured-arrival-text h2 { text-align: left; margin-bottom: 1rem; }
.featured-tag { display: inline-block; padding: 0.3rem 0.8rem; background-color: var(--accent-color); color: var(--light-text-color); border-radius: 5px; margin-bottom: 1rem; font-size: 0.9rem; }

.product-card .new-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 0.3rem 0.7rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.behind-the-harvest-section .behind-the-harvest-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.behind-the-harvest-text h2 { text-align: left; }
.behind-the-harvest-image img { border-radius: 8px; }

.coming-soon-section {
    background-image: url('images/62.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 6rem 0;
    position: relative;
    color: var(--light-text-color);
}
.coming-soon-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); }
.coming-soon-container { position: relative; z-index: 2; }
.coming-soon-section h2, .coming-soon-section p { color: var(--light-text-color); }
.countdown-timer { display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; }
.countdown-timer div { font-family: var(--font-headings); font-size: 1.5rem; }
.countdown-timer span { display: block; font-size: clamp(2.5rem, 8vw, 4rem); line-height: 1; }

.comparison-table-section { background-color: var(--surface-color); }
.comparison-table-section table { width: 100%; border-collapse: collapse; text-align: left; }
.comparison-table-section th, .comparison-table-section td { padding: 1rem; border-bottom: 1px solid var(--border-color); }
.comparison-table-section thead { background-color: #fff; }
.comparison-table-section th { font-family: var(--font-headings); color: var(--primary-color); }
.comparison-table-section tbody tr:last-child td { border-bottom: none; }

.perfect-pairings-section .pairings-container { display: flex; align-items: flex-start; justify-content: center; gap: 2rem; }
.pairing-item { text-align: center; }
.pairing-item img { border-radius: 8px; width: 100%; max-width: 300px; margin-bottom: 1rem; aspect-ratio: 1/1; object-fit: cover; }
.pairing-plus { font-size: 3rem; color: var(--accent-color); font-family: var(--font-headings); line-height: 300px; line-height: 1; align-self: center; }

.reviews-carousel-section {
    background-color: var(--surface-color);
}
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel-slide {
    flex: 0 0 100%;
    padding: 0 4rem; 
    text-align: center;
}
.carousel-slide p {
    font-family: var(--font-headings);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.carousel-slide span {
    color: var(--secondary-color);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--accent-color);
    color: var(--light-text-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}
.carousel-btn:hover {
    background-color: var(--primary-color);
}
.carousel-btn.prev {
    left: 0px;
}
.carousel-btn.next {
    right: 0px;
}

.ask-roaster-section .guide-accordion-content { display: flex; flex-direction: row; gap: 1.5rem; align-items: flex-start; }
.ask-roaster-section .guide-accordion-content img { width: 150px; /*flex-shrink: 0;*/ }

.final-cta-section { background-color: #fff; border-top: 1px solid var(--border-color); }
.final-cta-container { max-width: 800px; text-align: center; }

@media (max-width: 768px) {
    .featured-arrival-container,
    .behind-the-harvest-container { grid-template-columns: 1fr; }
    .featured-arrival-text h2,
    .behind-the-harvest-text h2 { text-align: center; }
    .behind-the-harvest-image { order: 1; }
    .behind-the-harvest-text { order: 2; }
    
    .countdown-timer { gap: 1rem; }
    .countdown-timer div { font-size: 1rem; }
    .featured-arrival-container,
    .behind-the-harvest-section .behind-the-harvest-container { 
        grid-template-columns: 1fr; 
    }
    .cheatsheet-table-wrapper table {
        border: none;
    }

    .cheatsheet-table-wrapper thead {
        display: none;
    }

    .cheatsheet-table-wrapper tr {
        display: block;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background-color: #fff;
    }
    .comparison-table-section tr {
        background-color: var(--background-color);
    }

    .cheatsheet-table-wrapper td {
        display: block;
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: 1px solid var(--border-color);
    }

    .cheatsheet-table-wrapper td:last-child {
        border-bottom: none;
    }

    .cheatsheet-table-wrapper td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-right: 10px;
        font-weight: 600;
        text-align: left;
        color: var(--primary-color);
    }
    .pairings-container { flex-direction: column; }
    .pairing-plus { line-height: 1; }
    .ask-roaster-section .guide-accordion-content { flex-direction: column; align-items: center; }
    .pairing-plus {
        line-height: 1;
    }
    .carousel-container {
        padding-bottom: 60px;
    }
    .carousel-slide {
        padding: 0;
    }
    .carousel-btn {
        top: auto;
        bottom: 10px;
        transform: translateY(0);
    }
    .carousel-btn.prev {
        left: calc(50% - 45px);
    }
    .carousel-btn.next {
        right: calc(50% - 45px);
    }
}








.text-page-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.text-page-container {
    max-width: 800px;
}

.text-page-container h1 {
    margin-bottom: 0.5rem;
}

.text-page-container .last-updated {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.text-page-container h2 {
    text-align: left;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.text-page-container p, .text-page-container ul {
    line-height: 1.8;
}

.text-page-container ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.text-page-container li {
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .text-page-container {
        padding: 2rem;
    }
}
.contact-email-link {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}

.contact-email-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}
.thank-you-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    background-color: var(--background-color);
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.thank-you-content h1 {
    margin-bottom: 1rem;
}

.thank-you-content p {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    line-height: 1.8;
}

.thank-you-content .cta-button {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 2rem;
    }
}











.subscription-hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text-color);
    background-image: url('images/66.webp');
    background-size: cover;
    background-position: center;
}
.subscription-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.subscription-hero-content { position: relative; z-index: 2; }
.subscription-hero-content h1, .subscription-hero-content p { color: var(--light-text-color); }

.why-subscribe-section { background-color: var(--surface-color); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.benefit-item svg { width: 50px; height: 50px; margin-bottom: 1rem; color: var(--accent-color); }

.how-it-works-section .how-it-works-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.how-it-works-image img { border-radius: 8px; }
.how-it-works-steps h2 { text-align: left; }
.how-it-works-steps .step { margin-bottom: 2rem; border-left: 3px solid var(--accent-color); padding-left: 1.5rem; }
.how-it-works-steps .step:last-child { margin-bottom: 0; }
.how-it-works-steps h3 { margin-bottom: 0.5rem; }

.plans-section { background-color: var(--surface-color); }
.billing-toggle { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-bottom: 3rem; }
.switch { position: relative; display: inline-block; width: 60px; height: 34px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--secondary-color); transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--accent-color); }
input:checked + .slider:before { transform: translateX(26px); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: flex-start; }
.pricing-plan { background: #fff; border: 1px solid var(--border-color); border-radius: 8px; padding: 2rem; text-align: center; position: relative; }
.pricing-plan.popular { border-color: var(--accent-color); border-width: 2px; }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background-color: var(--accent-color); color: var(--light-text-color); padding: 0.3rem 1rem; border-radius: 20px; font-size: 0.9rem; }
.plan-description { color: var(--secondary-color); }
.price { font-size: 2.5rem; font-weight: 600; margin: 1.5rem 0; }
.price span { font-size: 1rem; font-weight: 400; color: var(--secondary-color); }
.pricing-plan ul { margin: 1.5rem 0; text-align: left; display: inline-block;}
.pricing-plan li { margin-bottom: 0.8rem; list-style: '✓ '; padding-left: 0.5rem; }

.whats-inside-section .whats-inside-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.whats-inside-text h2 { text-align: left; }
.whats-inside-image img { border-radius: 8px; }

.freshness-promise-section {
    position: relative;
    padding: 13rem 0; 
    text-align: center;
    color: var(--light-text-color);
    background-image: url('images/69.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.freshness-promise-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
}
.freshness-promise-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 2rem;
}
.freshness-promise-section h2, .freshness-promise-section p {
    color: var(--light-text-color);
}
.freshness-promise-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}
.quote-text {
    font-family: var(--font-headings);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    line-height: 1.5;
    font-style: italic;
    border: none;
    margin: 0 0 1.5rem 0;
}

.quote-author {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}
.comparison-v2-section { background-color: var(--surface-color); }
.comparison-grid { max-width: 800px; margin: 0 auto; }
.comparison-headers { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem; padding: 0 1rem; border-bottom: 2px solid var(--border-color); margin-bottom: 1rem; }
.comparison-headers h3:not(:first-child) { text-align: center; }
.comparison-item { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem; align-items: center; background: #fff; border-radius: 8px; padding: 1.5rem 1rem; margin-bottom: 1rem; }
.comparison-item p { margin: 0; font-weight: 600; }
.comparison-item span { text-align: center; font-size: 1.2rem; }
.check { color: var(--accent-color); }
.cross { color: var(--secondary-color); }

.final-cta-section-sub { background-color: #fff; }
.final-cta-sub-container { text-align: center; max-width: 700px; }

@media (max-width: 992px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-plan { max-width: 400px; margin: 0 auto; }
    .pricing-plan.popular { margin-top: 1rem; margin-bottom: 1rem; }
}

@media (max-width: 768px) {
    .benefits-grid,
    .how-it-works-container,
    .whats-inside-container,
    .freshness-promise-container,
    .final-cta-sub-container { grid-template-columns: 1fr; }

    .how-it-works-image,
    .whats-inside-image { order: 1; margin-bottom: 2rem; }

    .how-it-works-steps,
    .whats-inside-text { order: 2; text-align: center; }

    .how-it-works-steps h2,
    .whats-inside-text h2 { text-align: center; }
.benefits-grid,
.how-it-works-section .how-it-works-container,
.whats-inside-section .whats-inside-container,
.freshness-promise-container,
.final-cta-sub-container { 
    grid-template-columns: 1fr; 
}
    .comparison-headers { display: none; }
    .comparison-item { grid-template-columns: 1fr; gap: 0.5rem; text-align: center; }
    .comparison-item p { margin-bottom: 0.5rem; }
    .comparison-item span::before { font-weight: 600; color: var(--primary-color); margin-right: 0.5rem; }
    .comparison-item .check::before { content: 'Subscription: '; }
    .comparison-item .cross::before { content: 'One-Time: '; }
    .comparison-item span { text-align: left; display: block; width: fit-content; margin: 0 auto; }
}