/* ============================================================
   COMPONENTS CSS
   ============================================================ */

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-6);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--r-sm);
    transition: all var(--ease-base);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--ease-base); }
.btn:hover svg { transform: translateX(2px); }

.btn--lg { padding: var(--sp-4) var(--sp-8); font-size: var(--text-base); }
.btn--sm { padding: var(--sp-2) var(--sp-4); font-size: 0.75rem; }

.btn--primary {
    background: var(--color-gold);
    color: var(--color-forest-dark);
}
.btn--primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 154, 75, 0.3);
}

.btn--forest {
    background: var(--color-forest);
    color: var(--color-cream);
}
.btn--forest:hover {
    background: var(--color-forest-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 61, 43, 0.3);
}

.btn--outline {
    border-color: var(--color-forest);
    color: var(--color-forest);
    background: transparent;
}
.btn--outline:hover {
    background: var(--color-forest);
    color: var(--color-cream);
}

.btn--outline-light {
    border-color: var(--color-cream);
    color: var(--color-cream);
    background: transparent;
}
.btn--outline-light:hover {
    background: var(--color-cream);
    color: var(--color-forest);
}

.btn--outline-gold {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: transparent;
}
.btn--outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-forest-dark);
}

/* --- Badges --- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--r-full);
}
.badge--robusta { background: var(--color-forest-light); color: var(--color-cream); }
.badge--arabica { background: var(--color-gold-light); color: var(--color-forest-dark); }
.badge--cocoa { background: var(--color-cocoa); color: var(--color-cream); }

/* --- Cards General --- */
.card {
    background: var(--color-white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--ease-base), box-shadow var(--ease-base);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* --- Product Card --- */
.product-card { height: 100%; border: 1px solid rgba(31, 61, 43, 0.05); }
.product-card__img-link {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-cream-dark);
}
.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
.product-card__img-placeholder svg { width: 60px; height: 60px; }
.product-card__img-badge {
    position: absolute;
    top: var(--sp-4);
    right: var(--sp-4);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.product-card__body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; }
.product-card__grade { font-family: var(--font-sans); font-size: 0.75rem; color: var(--color-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--sp-2); }
.product-card__title { font-size: 1.25rem; margin-bottom: var(--sp-3); }
.product-card__title a { color: var(--color-forest-dark); }
.product-card__title a::before { content: ""; position: absolute; inset: 0; z-index: 1; }

.product-card__origin { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); color: var(--color-text-light); margin-bottom: var(--sp-2); }
.product-card__origin svg { color: var(--color-gold); }
.product-card__flavor { font-size: var(--text-sm); color: var(--color-text); margin-bottom: var(--sp-4); flex: 1; }
.product-card__meta { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-6); }
.product-card__tag { background: var(--color-cream); color: var(--color-forest); font-size: 0.75rem; font-weight: 600; padding: 2px 8px; border-radius: var(--r-sm); border: 1px solid rgba(31,61,43,0.1); }
.product-card__cta { width: 100%; justify-content: center; position: relative; z-index: 2; }

/* --- Partner Card --- */
.partner-card { border: 1px solid rgba(193, 154, 75, 0.2); height: 100%; }
.partner-card__logo-wrap {
    height: 140px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-6);
    border-bottom: 1px solid rgba(31,61,43,0.05);
}
.partner-card__logo { max-height: 100%; max-width: 100%; object-fit: contain; }
.partner-card__logo-placeholder {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--color-cream);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 1.5rem; color: var(--color-gold);
}

.partner-card__body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; }
.partner-card__type { font-size: 0.75rem; color: var(--color-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--sp-2); }
.partner-card__name { font-size: 1.25rem; color: var(--color-forest-dark); margin-bottom: var(--sp-3); }
.partner-card__location, .partner-card__members {
    display: flex; align-items: center; gap: var(--sp-2);
    font-size: var(--text-sm); color: var(--color-text-light); margin-bottom: var(--sp-2);
}
.partner-card__location svg, .partner-card__members svg { color: var(--color-gold); }
.partner-card__desc { font-size: var(--text-sm); margin: var(--sp-4) 0; flex: 1; }
.partner-card__products { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-6); }
.partner-card__link { width: 100%; justify-content: center; }

/* --- Blog Card --- */
.blog-card { height: 100%; }
.blog-card__img-wrap { display: block; position: relative; aspect-ratio: 16/9; overflow: hidden; }
.blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease-base); }
.blog-card:hover .blog-card__img { transform: scale(1.05); }
.blog-card__body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; }
.blog-card__date { font-size: 0.75rem; color: var(--color-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--sp-2); display: block; }
.blog-card__title { font-size: 1.25rem; margin-bottom: var(--sp-3); }
.blog-card__title a { color: var(--color-forest-dark); }
.blog-card__title a::before { content: ""; position: absolute; inset: 0; z-index: 1; }
.blog-card__excerpt { font-size: var(--text-sm); color: var(--color-text-light); margin-bottom: var(--sp-6); flex: 1; }
.blog-card .btn { align-self: flex-start; position: relative; z-index: 2; }

/* --- Forms (Forms & Contact) --- */
.mero-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
}
@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); position: relative; }
.form-label { font-size: var(--text-sm); font-weight: 600; color: var(--color-forest-dark); }
.required { color: #d93025; }

.form-control {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    font-family: inherit;
    font-size: var(--text-base);
    color: var(--color-text);
    background: var(--color-white);
    border: 1px solid #d1d5db;
    border-radius: var(--r-sm);
    transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
.form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(193, 154, 75, 0.2);
}
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Basic form validation state styling */
.form-control.is-invalid { border-color: #d93025; }
.form-error { display: none; font-size: 0.75rem; color: #d93025; margin-top: 4px; }
.form-control.is-invalid ~ .form-error { display: block; }

/* Alerts */
.alert {
    padding: var(--sp-4);
    border-radius: var(--r-sm);
    margin-bottom: var(--sp-6);
    font-size: var(--text-sm);
    border-left: 4px solid transparent;
}
.alert--success { background: #ecfdf5; color: #065f46; border-left-color: #10b981; }
.alert--error { background: #fef2f2; color: #991b1b; border-left-color: #ef4444; }

/* --- Utility / Misc --- */
.w-full { width: 100%; }
.text-center { text-align: center; }
.justify-center { justify-content: center; }

.section--spaced {
    padding-top: var(--sp-24);
    padding-bottom: var(--sp-24);
}
@media (max-width: 1024px) {
    .section--spaced {
        padding-top: var(--sp-16);
        padding-bottom: var(--sp-16);
    }
}

.section-cta-row {
    margin-top: var(--sp-12);
    text-align: center;
    display: flex;
    justify-content: center;
}

.no-results, .no-content-notice {
    text-align: center;
    padding: var(--sp-16) var(--sp-6);
    background: var(--color-white);
    border-radius: var(--r-lg);
    border: 1px dashed rgba(193, 154, 75, 0.4);
    max-width: 600px;
    margin: 0 auto;
}
.no-results__icon svg { width: 80px; height: 80px; margin-bottom: var(--sp-6); }
.no-results__title { font-size: 2rem; color: var(--color-forest-dark); margin-bottom: var(--sp-4); }
.no-results__text { color: var(--color-text-light); margin-bottom: var(--sp-8); }
.no-results__actions { display: flex; gap: var(--sp-4); justify-content: center; }

/* --- Table Components --- */
.product-info-strip {
    display: flex;
    justify-content: space-between;
    gap: var(--sp-6);
    flex-wrap: wrap;
    padding: var(--sp-4) 0;
}
.product-info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
    color: var(--color-cream);
    flex: 1;
    min-width: 220px;
}
.product-info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.product-info-item strong {
    display: block;
    color: var(--color-gold);
    font-size: var(--text-base);
    margin-bottom: 4px;
}
.product-info-item span {
    font-size: var(--text-sm);
    color: rgba(250, 247, 240, 0.85);
    line-height: 1.4;
    display: block;
}

/* --- Table Components --- */
.product-tables {
    display: flex;
    flex-direction: column;
    gap: var(--sp-12);
}
.product-table-wrapper {
    background: var(--color-forest-dark);
    padding: var(--sp-8);
    border-radius: var(--r-lg);
    color: var(--color-cream);
}
.product-table-wrapper h3 {
    color: var(--color-cream);
    margin-bottom: var(--sp-6);
    font-size: var(--text-xl);
    border-bottom: 1px solid rgba(250, 247, 240, 0.2);
    padding-bottom: var(--sp-4);
}
.mero-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--sp-4);
    text-align: left;
}
.mero-table th {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--color-gold);
    padding: var(--sp-3) var(--sp-4);
    border-bottom: 2px solid rgba(193, 154, 75, 0.3);
    font-size: var(--text-sm);
}
.mero-table td {
    padding: var(--sp-4);
    border-bottom: 1px solid rgba(250, 247, 240, 0.1);
    font-size: var(--text-sm);
}
.mero-table tr:last-child td {
    border-bottom: none;
}
.mero-table td:first-child {
    font-weight: 600;
    color: var(--color-white);
}
.table-note {
    font-size: var(--text-sm);
    color: rgba(250, 247, 240, 0.7);
    font-style: italic;
    margin-top: var(--sp-4);
}

/* --- Clean Redesign Components & Hero --- */
.home-hero--clean {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-forest-dark);
    overflow: hidden;
}
.home-hero__bg {
    position: absolute;
    inset: -5%; /* Room for parallax */
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(21,42,30,0.5) 0%, rgba(21,42,30,0.85) 100%);
    z-index: 1;
}
.home-hero__content {
    position: relative;
    z-index: 2;
    padding: var(--sp-12) 0;
}
.home-hero__text--centered {
    max-width: 800px;
    margin: 0 auto;
}
.home-hero__eyebrow {
    color: var(--color-gold);
    font-size: var(--text-sm);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--sp-6);
}
.home-hero__title {
    color: var(--color-white);
    font-size: var(--text-hero);
    line-height: 1.1;
    margin-bottom: var(--sp-6);
}
.home-hero__subtitle {
    color: rgba(250, 247, 240, 0.9);
    font-size: var(--text-lg);
    max-width: 650px;
    margin: 0 auto var(--sp-10);
    line-height: 1.6;
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    background-color: var(--color-forest-dark);
    padding: clamp(5rem, 10vw, 8rem) 0;
    text-align: center;
    overflow: hidden;
}
.cta-banner__bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C19A4B' fill-opacity='0.035'%3E%3Cellipse cx='40' cy='40' rx='15' ry='22' transform='rotate(30 40 40)'/%3E%3Cellipse cx='40' cy='40' rx='15' ry='22' transform='rotate(90 40 40)'/%3E%3Cellipse cx='40' cy='40' rx='15' ry='22' transform='rotate(150 40 40)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 160px;
    z-index: 0;
}
.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--color-forest-dark) 80%);
    z-index: 1;
}
.cta-banner__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.cta-banner__actions {
    display: flex;
    justify-content: center;
    gap: var(--sp-4);
    margin-top: var(--sp-8);
    flex-wrap: wrap;
}
.cta-banner .section-title {
    color: var(--color-white);
}
.cta-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    margin-top: var(--sp-12);
    border-top: 1px solid rgba(193, 154, 75, 0.2);
    padding-top: var(--sp-8);
}
.cta-info-card {
    display: flex;
    flex-direction: column;
}
.cta-info-card__num {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-gold);
    margin-bottom: var(--sp-2);
    line-height: 1.2;
}
.cta-info-card__label {
    font-size: var(--text-sm);
    color: rgba(250, 247, 240, 0.7);
}
@media (max-width: 768px) {
    .cta-info-cards { grid-template-columns: 1fr; gap: var(--sp-8); }
}

.home-intro-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
}
@media (max-width: 1024px) {
    .home-intro-clean { grid-template-columns: 1fr; gap: var(--sp-12); }
}

.home-intro-clean__stats {
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
    padding: var(--sp-12);
    background: var(--color-cream);
    border-radius: var(--r-lg);
    border: 1px solid rgba(193,154,75,0.2);
}
@media (max-width: 640px) {
    .home-intro-clean__stats {
        padding: var(--sp-6) var(--sp-4);
        gap: var(--sp-6);
    }
}
.clean-stat {
    display: flex;
    flex-direction: column;
}
.clean-stat__num {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 1.1;
    margin-bottom: var(--sp-2);
}
.clean-stat__label {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--color-forest-dark);
}

.partner-logos-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--sp-12);
    margin-top: var(--sp-8);
}
.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    max-width: 180px;
    opacity: 0.6;
    transition: opacity var(--ease-fast), transform var(--ease-fast);
}
.partner-logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}
.partner-logo-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter var(--ease-fast);
}
.partner-logo-item:hover img {
    filter: grayscale(0%);
}
.partner-logo-item span {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-forest);
    font-weight: 600;
}

/* Entry Content (Typography formatting for wysiwyg content) */
.entry-content > * + * { margin-top: 1.5em; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin-top: 2em; margin-bottom: 1em; color: var(--color-forest-dark); }
.entry-content ul, .entry-content ol { padding-left: 1.5em; margin-bottom: 1.5em; }
.entry-content li { margin-bottom: 0.5em; }
.entry-content blockquote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-forest);
    border-left: 4px solid var(--color-gold);
    padding-left: var(--sp-6);
    margin: 2em 0;
}
.entry-content a { color: var(--color-gold); text-decoration: underline; text-underline-offset: 4px; font-weight: 600; }
.entry-content a:hover { color: var(--color-forest); }
/* ============================================================
   ABOUT PAGE COMPONENTS
   ============================================================ */

/* --- Mission Section --- */
.about-mission {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--sp-12);
    align-items: start;
}
@media (max-width: 1024px) {
    .about-mission { grid-template-columns: 1fr; }
}
.company-card {
    background: var(--color-white);
    padding: var(--sp-8);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-gold);
}
.company-card__title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-forest-dark);
    margin-bottom: var(--sp-6);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--sp-4);
}
.company-card__title svg { color: var(--color-gold); flex-shrink: 0; }
.company-card__info { display: grid; gap: var(--sp-4); }
.company-card__info dt {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.company-card__info dd { font-size: var(--text-sm); color: var(--color-text); margin: 0; font-weight: 500; }
.company-card__info dd a { color: var(--color-gold); }
.company-card__info dd a:hover { color: var(--color-forest-dark); }

/* --- Value Chain --- */
.value-chain {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--sp-4);
    counter-reset: value-chain;
}
@media (max-width: 900px) {
    .value-chain { flex-direction: column; align-items: center; gap: var(--sp-12); }
}
.value-chain__step {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.value-chain__icon {
    width: 96px;
    height: 96px;
    margin-bottom: var(--sp-6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.value-chain__icon svg { width: 100%; height: 100%; display: block; }
.value-chain__num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--sp-2);
}
.value-chain__step h3 { font-size: 1.25rem; color: var(--color-cream); margin-bottom: var(--sp-3); }
.value-chain__step p { font-size: 0.95rem; color: rgba(250, 247, 240, 0.75); line-height: 1.6; }

.value-chain__arrow {
    margin-top: 36px;
    flex-shrink: 0;
    opacity: 0.5;
}
.value-chain__arrow svg { width: 32px; height: 32px; display: block; }
@media (max-width: 900px) {
    .value-chain__arrow { transform: rotate(90deg); margin: 0; }
}

/* --- Core Values --- */
.values-grid {
    margin-top: var(--sp-8);
}
.value-item {
    position: relative;
    padding-top: var(--sp-6);
    border-top: 2px solid var(--color-gold-muted);
}
.value-item__number {
    position: absolute;
    top: -1.75rem;
    left: 0;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold-muted);
    line-height: 1;
}
.value-item h3 {
    font-size: 1.25rem;
    color: var(--color-forest-dark);
    margin-bottom: var(--sp-3);
    position: relative;
    z-index: 1;
}
.value-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
}

/* ============================================================
   CONTACT PAGE COMPONENTS
   ============================================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--sp-12);
    align-items: start;
}
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-form-wrap {
    padding: var(--sp-10);
    background: var(--color-white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
}
.contact-form-title {
    font-size: 1.75rem;
    color: var(--color-forest-dark);
    margin-bottom: var(--sp-8);
    padding-bottom: var(--sp-4);
    border-bottom: 2px solid var(--color-gold-muted);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
}
.contact-card {
    background: var(--color-white);
    padding: var(--sp-6);
    border-radius: var(--r-lg);
    border-left: 4px solid var(--color-gold);
    box-shadow: var(--shadow-sm);
}
.contact-card h3 {
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: var(--sp-3);
}
.contact-card address,
.contact-card p {
    font-style: normal;
    font-size: var(--text-sm);
    color: var(--color-text);
    line-height: 1.7;
}
.contact-card a { color: var(--color-forest); font-weight: 600; }
.contact-card a:hover { color: var(--color-gold); }

.contact-map-placeholder {
    background: var(--color-cream);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    min-height: 180px;
    border: 1px dashed rgba(193,154,75,0.4);
    text-align: center;
}
.contact-map-placeholder svg {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
}
.contact-map-placeholder span {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* ============================================================
   EXPORT SERVICES PAGE COMPONENTS
   ============================================================ */

/* --- Capacity Banner --- */
.capacity-banner {
    background: var(--color-forest-dark);
    padding: var(--sp-6) 0;
    border-bottom: 3px solid var(--color-gold);
}
.capacity-banner__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-6);
}
.capacity-banner__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 140px;
}
.capacity-banner__item strong {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-gold);
    line-height: 1.2;
}
.capacity-banner__item span {
    font-size: 0.8rem;
    color: rgba(250,247,240,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}
.capacity-banner__divider {
    width: 1px;
    height: 48px;
    background: rgba(250,247,240,0.15);
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .capacity-banner__divider { display: none; }
    .capacity-banner__item { min-width: 45%; }
}

/* --- Export Split Layout --- */
.export-split {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--sp-12);
    align-items: start;
}
@media (max-width: 1024px) {
    .export-split { grid-template-columns: 1fr; }
}

/* --- Sourcing Regions List --- */
.sourcing-regions {
    list-style: none;
    padding: 0;
    margin: var(--sp-8) 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}
.sourcing-regions li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
}
.sourcing-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}
.sourcing-dot--robusta { background: #4CAF50; }
.sourcing-dot--arabica { background: var(--color-gold); }
.sourcing-dot--cocoa   { background: #8D5524; }
.sourcing-regions li > div { display: flex; flex-direction: column; gap: 2px; }
.sourcing-regions li strong { font-size: var(--text-base); color: var(--color-forest-dark); }
.sourcing-regions li span { font-size: var(--text-sm); color: var(--color-text-light); }

/* --- Export Map Card --- */
.export-map-card {
    background: var(--color-forest-dark);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid rgba(193,154,75,0.2);
}
.export-map-card__header {
    padding: var(--sp-4) var(--sp-6);
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.export-map-card__header svg { width: 18px; height: 18px; }
.export-map-card__body {
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}
.export-map-card__region {
    font-size: var(--text-sm);
    color: rgba(250,247,240,0.85);
    padding: var(--sp-2) 0;
    border-bottom: 1px solid rgba(250,247,240,0.07);
}
.export-map-card__port {
    font-size: var(--text-sm);
    color: var(--color-gold);
    font-weight: 600;
    margin-top: var(--sp-2);
}

/* --- QA Steps --- */
.qa-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: var(--sp-10);
    counter-reset: qa;
}
.qa-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--sp-6);
    position: relative;
}
.qa-step__num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(193,154,75,0.15);
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-gold);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}
.qa-step__content {
    padding-bottom: var(--sp-8);
}
.qa-step__content h3 {
    font-size: 1.15rem;
    color: var(--color-cream);
    margin-bottom: var(--sp-2);
}
.qa-step__content p {
    font-size: var(--text-sm);
    color: rgba(250,247,240,0.7);
    line-height: 1.7;
}
.qa-step__connector {
    position: absolute;
    left: 29px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: rgba(193,154,75,0.2);
    z-index: 1;
}

/* --- Incoterms Grid --- */
.incoterms-grid {
    margin-top: var(--sp-8);
}
.incoterm-card {
    background: var(--color-white);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    border-top: 4px solid var(--color-gold);
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.incoterm-card__code {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--sp-3);
    line-height: 1;
}
.incoterm-card h3 {
    font-size: 1.1rem;
    color: var(--color-forest-dark);
    margin-bottom: var(--sp-4);
}
.incoterm-card p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Logistics Info --- */
.logistics-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    margin-top: var(--sp-10);
    background: var(--color-white);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
    .logistics-info { grid-template-columns: 1fr; }
}
.logistics-info__item {
    padding: var(--sp-4);
    border-left: 3px solid var(--color-gold-muted);
    font-size: var(--text-sm);
    color: var(--color-text);
    line-height: 1.6;
}
.logistics-info__item strong {
    display: block;
    color: var(--color-forest-dark);
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   HERITAGE PAGE COMPONENTS
   ============================================================ */

/* --- Full-width Landscape Image --- */
.heritage-hero-img {
    position: relative;
    width: 100%;
    max-height: 480px;
    overflow: hidden;
}
.heritage-hero-img__img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}
.heritage-hero-img__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--sp-3) var(--sp-6);
    background: linear-gradient(to top, rgba(21,42,30,0.85), transparent);
}
.heritage-hero-img__caption span {
    font-size: var(--text-xs);
    color: rgba(250,247,240,0.7);
    font-style: italic;
    letter-spacing: 0.05em;
}

/* --- Heritage Content Grid (sidebar + text) --- */
.heritage-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--sp-12);
    align-items: start;
}
.heritage-content--reverse {
    grid-template-columns: 1fr 320px;
}
.heritage-content--reverse .heritage-content__sidebar { order: 2; }
.heritage-content--reverse .heritage-content__text    { order: 1; }
@media (max-width: 1024px) {
    .heritage-content,
    .heritage-content--reverse {
        grid-template-columns: 1fr;
    }
    .heritage-content--reverse .heritage-content__sidebar { order: 0; }
    .heritage-content--reverse .heritage-content__text    { order: 0; }
}

/* --- Heritage Sidebar Card --- */
.heritage-sidebar-card {
    background: var(--color-white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(193,154,75,0.15);
}
.heritage-sidebar-card__icon {
    background: var(--color-forest-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-8);
    min-height: 160px;
}
.heritage-sidebar-card__icon svg {
    width: 100px;
    height: 100px;
}
.heritage-sidebar-card__region {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    padding: var(--sp-6) var(--sp-6) var(--sp-2);
    margin: 0;
}
.heritage-sidebar-card h3 {
    font-size: 1.25rem;
    color: var(--color-forest-dark);
    padding: 0 var(--sp-6) var(--sp-4);
    margin: 0;
}
.heritage-sidebar-card ul {
    list-style: none;
    padding: 0 var(--sp-6) var(--sp-6);
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    border-top: 1px solid var(--color-border);
    padding-top: var(--sp-4);
}
.heritage-sidebar-card li {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    padding-left: var(--sp-4);
    position: relative;
}
.heritage-sidebar-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
}

/* --- Heritage Decorative Divider --- */
.heritage-divider {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    padding: 0 var(--sp-8);
    max-width: 600px;
    margin: 0 auto;
}
.heritage-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(193,154,75,0.3), transparent);
}
.heritage-divider__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Belt Grid (East Africa Coffee Countries) --- */
.belt-grid {
    margin-top: var(--sp-10);
}
.belt-card {
    background: var(--color-white);
    border-radius: var(--r-lg);
    padding: var(--sp-8);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(31,61,43,0.07);
    transition: transform var(--ease-base), box-shadow var(--ease-base);
}
.belt-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.belt-card--featured {
    background: var(--color-forest-dark);
    border-color: var(--color-gold);
    border-width: 2px;
}
.belt-card--featured h3,
.belt-card--featured .belt-card__sub,
.belt-card--featured p {
    color: var(--color-cream) !important;
}
.belt-card__flag {
    font-size: 2.5rem;
    margin-bottom: var(--sp-4);
    line-height: 1;
}
.belt-card h3 {
    font-size: 1.25rem;
    color: var(--color-forest-dark);
    margin-bottom: var(--sp-2);
}
.belt-card__sub {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: var(--sp-4);
    display: block;
}
.belt-card p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}
.belt-card__badge {
    display: inline-block;
    margin-top: var(--sp-4);
    padding: 4px 12px;
    background: var(--color-gold);
    color: var(--color-forest-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--r-full);
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.section--home-video {
    padding-top: 0;
    padding-bottom: var(--sp-16);
    background: var(--color-white);
    margin: 0;
}
@media (max-width: 1024px) {
    .section--home-video {
        padding-bottom: var(--sp-12);
    }
}
.mero-video-container {
    position: relative;
    width: 100%;
    /* 16:9 Aspect Ratio */
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
}
.mero-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Hero Actions Mobile Layout --- */
.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    justify-content: center;
    margin-top: var(--sp-8);
}
@media (max-width: 640px) {
    .home-hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .home-hero__actions .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================================================
   SINGLE PRODUCT PAGE STYLES
   ============================================================ */
.product-detail {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--sp-12);
    align-items: start;
}
@media (max-width: 900px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }
}

.product-detail__image {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--color-white);
}
.product-detail__img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.product-detail__badge {
    position: absolute;
    top: var(--sp-4);
    left: var(--sp-4);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.product-detail__info {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
}

.product-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
}
.product-detail__tag {
    background: var(--color-white);
    color: var(--color-forest-dark);
    font-size: var(--text-sm);
    font-weight: 600;
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--r-md);
    border: 1px solid var(--color-border);
}
.product-detail__tag--cert {
    border-color: var(--color-gold);
    color: var(--color-gold-dark);
}

.product-detail__flavor {
    background: var(--color-white);
    padding: var(--sp-6);
    border-radius: var(--r-md);
    border-left: 4px solid var(--color-gold);
    box-shadow: var(--shadow-sm);
}
.product-detail__flavor-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold-dark);
    margin-bottom: var(--sp-2);
}
.product-detail__flavor-text {
    font-family: var(--font-serif);
    font-size: var(--text-md);
    font-style: italic;
    color: var(--color-forest-dark);
    line-height: 1.5;
}

.product-detail__desc {
    font-size: var(--text-base);
    color: var(--color-text-light);
    line-height: 1.75;
}

/* Specifications Table */
.spec-table {
    background: var(--color-white);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    padding: var(--sp-6);
}
.spec-table__title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-forest);
    border-bottom: 2px solid var(--color-gold-muted);
    padding-bottom: var(--sp-3);
    margin-bottom: var(--sp-4);
    margin-top: 0;
}
.spec-table__rows {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}
.spec-table__row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--color-cream-dark);
    font-size: var(--text-sm);
}
.spec-table__row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.spec-table__row dt {
    font-weight: 600;
    color: var(--color-text-light);
}
.spec-table__row dd {
    color: var(--color-text);
    font-weight: 500;
    margin-left: 0;
}

.product-detail__actions {
    display: flex;
    gap: var(--sp-4);
    margin-top: var(--sp-4);
}
@media (max-width: 640px) {
    .product-detail__actions {
        flex-direction: column;
    }
    .product-detail__actions .btn {
        width: 100%;
        justify-content: center;
    }
}
