/* ===================================
   ULTIMATE COFFEE LIMITED - MASTER STYLES
   =================================== */

/* CSS Custom Properties - Brand Colors */
:root {
    --coffee-dark: #2B1B12;
    --coffee-brown: #5C3A21;
    --coffee-amber: #B4772E;
    --coffee-cream: #F3EDE1;
    --coffee-text-dark: #2B1B12;
    --coffee-gold-line: #C9924B;
}

/* ===================================
   RESET & BASE
   =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling for entire page */
html {
    scroll-behavior: smooth;
}

/* Smoother transitions globally */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--coffee-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--coffee-cream);
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===================================
   NAVBAR (.nh-nav)
   =================================== */
.nh-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: none;
    outline: none;
}

.nh-nav.scrolled {
    background: rgba(43, 27, 18, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-top: none;
}

.nh-nav {
    border-top: none;
    outline: none;
}

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

.nh-nav-logo img {
    height: 50px;
    width: auto;
}

.nh-nav-logo span {
    display: none;
}

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

.nh-nav-links a {
    color: var(--coffee-cream);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nh-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coffee-amber);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nh-nav-links a:hover,
.nh-nav-links a.active {
    color: var(--coffee-amber);
}

.nh-nav-links a:hover::after,
.nh-nav-links a.active::after {
    width: 100%;
}

.nh-nav-cta {
    padding: 0.7rem 1.5rem;
    background: var(--coffee-amber);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nh-nav-cta:hover {
    background: #9d6526;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 119, 46, 0.4);
}

.nh-nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
}

.nh-nav-hamburger span {
    width: 100%;
    height: 3px;
    background: var(--coffee-cream);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nh-nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--coffee-dark);
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    gap: 1.5rem;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 999;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.nh-nav-mobile.active {
    right: 0;
}

.nh-nav-mobile > img {
    width: 90px;
    height: auto;
    margin-bottom: 1rem;
}

.nh-nav-mobile a {
    color: var(--coffee-cream);
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nh-nav-mobile a:hover,
.nh-nav-mobile a:focus-visible,
.nh-nav-mobile a.active {
    color: var(--coffee-amber);
    transform: translateX(8px);
}

.nh-nav-mobile.active a {
    opacity: 1;
    transform: translateX(0);
}

.nh-nav-mobile.active a:nth-of-type(1) { transition-delay: 0.1s; }
.nh-nav-mobile.active a:nth-of-type(2) { transition-delay: 0.15s; }
.nh-nav-mobile.active a:nth-of-type(3) { transition-delay: 0.2s; }
.nh-nav-mobile.active a:nth-of-type(4) { transition-delay: 0.25s; }
.nh-nav-mobile.active a:nth-of-type(5) { transition-delay: 0.3s; }
.nh-nav-mobile.active a:nth-of-type(6) { transition-delay: 0.35s; }

/* ===================================
   HERO SECTION (.nh-hero)
   =================================== */
.nh-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nh-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nh-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1), transform 20s cubic-bezier(0.4, 0, 0.2, 1);
}

.nh-slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.nh-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 27, 18, 0.35) 0%, rgba(43, 27, 18, 0.2) 100%);
}

.nh-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
    color: var(--coffee-cream);
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6);
}

.nh-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coffee-amber);
    margin-bottom: 1rem;
    display: block;
}

.nh-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.nh-title em {
    font-style: italic;
    color: var(--coffee-amber);
}

.nh-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.nh-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nh-btn-primary,
.nh-btn-ghost {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 44px;
    min-height: 44px;
}

.nh-btn-primary {
    background: var(--coffee-amber);
    color: white;
}

.nh-btn-primary:hover {
    background: #9d6526;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(180, 119, 46, 0.4);
}

.nh-btn-ghost {
    border: 2px solid var(--coffee-cream);
    color: var(--coffee-cream);
}

.nh-btn-ghost:hover {
    background: var(--coffee-cream);
    color: var(--coffee-dark);
    transform: translateY(-3px);
}

/* Hero Rail */
.nh-rail {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nh-rail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
}

.nh-rail-item.active {
    opacity: 1;
}

.nh-rail-number {
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--coffee-cream);
}

.nh-rail-label {
    font-size: 0.85rem;
    color: var(--coffee-cream);
    font-weight: 500;
}

.nh-rail-progress {
    position: absolute;
    left: -15px;
    top: 0;
    width: 3px;
    height: 0%;
    background: var(--coffee-amber);
    transition: height 6s linear;
}

.nh-rail-item.active ~ .nh-rail-progress {
    height: 100%;
}

/* Scroll Cue */
.nh-scroll-cue {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 20;
    width: 50px;
    height: 50px;
    border: 2px solid var(--coffee-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coffee-amber);
    font-size: 1.2rem;
    background: rgba(43, 27, 18, 0.5);
    backdrop-filter: blur(10px);
    cursor: pointer;
    animation: bounce 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nh-scroll-cue:hover {
    background: var(--coffee-amber);
    color: white;
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===================================
   SHOWCASE SECTION
   =================================== */
.showcase-section {
    padding: 6rem 2rem;
    background: var(--coffee-cream);
}

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

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

.showcase-card {
    position: relative;
}

.showcase-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 3;
    border-radius: 10px;
    overflow: hidden;
}

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

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 0.75rem;
    background: linear-gradient(to top, rgba(43, 27, 18, 0.95) 0%, rgba(43, 27, 18, 0.7) 70%, transparent 100%);
    color: var(--coffee-cream);
}

.showcase-name {
    font-family: 'Fraunces', serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.showcase-desc {
    font-size: 0.75rem;
    opacity: 0.9;
    line-height: 1.3;
}

/* Showcase Animations */
.showcase-anim {
    opacity: 0;
    transition: transform 2.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-row-1.showcase-anim {
    transform: translateX(100vw);
}

.showcase-row-2.showcase-anim {
    transform: translateX(-100vw);
}

.showcase-anim.showcase-in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Desktop Layout (768px+) */
@media (min-width: 768px) {
    .showcase-container {
        max-width: 1100px;
    }

    .showcase-card {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .showcase-image {
        flex: 0 0 55%;
    }

    .showcase-caption {
        position: static;
        flex: 1;
        padding: 0;
        background: none;
        color: var(--coffee-text-dark);
    }

    .showcase-name {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .showcase-desc {
        font-size: 0.9rem;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .showcase-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .showcase-row {
        grid-template-columns: 1fr;
    }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .showcase-anim {
        transition: opacity 0.5s ease;
        transform: translateX(0) !important;
    }
}

/* ===================================
   FEATURE SECTION (.feature-)
   =================================== */
.feature-section {
    position: relative;
    padding: 3rem 2rem;
    overflow: hidden;
    background: white;
}

.feature-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.feature-card {
    flex: 0 0 58%;
    background: var(--coffee-cream);
    border: 1px solid rgba(92, 58, 33, 0.1);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coffee-amber);
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 1.5rem;
}

.feature-text {
    color: var(--coffee-text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-stat {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--coffee-gold-line);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feature-stat-number {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--coffee-amber);
}

.feature-stat-label {
    font-size: 1.1rem;
    color: var(--coffee-dark);
    font-weight: 500;
}

.feature-photo {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-photo img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-photo:hover img {
    transform: scale(1.1);
}

/* Feature Animations */
.feature-anim {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card.feature-anim {
    transform: translateX(-70px);
}

.feature-photo.feature-anim {
    transform: translateX(70px);
}

.feature-anim.feature-in-view {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================
   QUICK STATS STRIP
   =================================== */
.quick-stats {
    padding: 2.5rem 2rem;
    background: linear-gradient(rgba(43, 27, 18, 0.72), rgba(43, 27, 18, 0.72)), url('images/field-with-coffee-beans-tree-branches-sunlight-with-blurry-wall-guatemala.jpg') center / cover;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(43, 27, 18, 0.2);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--coffee-brown);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coffee-amber);
    font-size: 1.8rem;
}

.stat-number {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--coffee-amber);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--coffee-cream);
    font-weight: 500;
    opacity: 0.9;
}

/* ===================================
   PAGE HERO (for inner pages)
   =================================== */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 27, 18, 0.75) 0%, rgba(43, 27, 18, 0.6) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--coffee-cream);
    padding: 0 2rem;
}

.page-hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coffee-amber);
    margin-bottom: 1rem;
    display: block;
}

.page-hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero-title em {
    font-style: italic;
    color: var(--coffee-amber);
}

.page-hero-description {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ===================================
   OFFER SECTION (.offer-)
   =================================== */
.offer-section {
    padding: 3rem 2rem;
    background: var(--coffee-cream);
}

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

.offer-header {
    text-align: center;
    margin-bottom: 2rem;
}

.offer-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--coffee-dark);
}

.offer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.offer-coffee-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.offer-card-image {
    position: relative;
    height: 250px;
}

.offer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--coffee-amber);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Space Mono', monospace;
    letter-spacing: 1px;
}

.offer-card-info {
    padding: 2rem;
}

.offer-card-title {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 1rem;
}

.offer-card-origin {
    color: var(--coffee-brown);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.offer-card-specs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.offer-spec {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--coffee-text-dark);
}

.offer-spec i {
    color: var(--coffee-amber);
    margin-top: 0.2rem;
}

.offer-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.offer-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--coffee-gold-line);
}

.offer-specialty-card {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.offer-specialty-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-specialty-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(43, 27, 18, 0.95) 0%, transparent 100%);
    color: var(--coffee-cream);
}

.offer-specialty-badge {
    display: inline-block;
    background: var(--coffee-amber);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Space Mono', monospace;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.offer-specialty-title {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.offer-specialty-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Offer Stats */
.offer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.offer-stat {
    text-align: center;
}

.offer-stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--coffee-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coffee-amber);
    font-size: 1.8rem;
}

.offer-stat-number {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 0.5rem;
}

.offer-stat-label {
    font-size: 1rem;
    color: var(--coffee-brown);
    font-weight: 600;
}

/* Offer Animations */
.offer-anim {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-left.offer-anim {
    transform: translateX(-50px);
}

.offer-right.offer-anim {
    transform: translateX(50px);
}

.offer-stat.offer-anim {
    transform: translateY(30px);
}

.offer-anim.offer-in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===================================
   CONTENT SECTIONS
   =================================== */
.content-section {
    padding: 3rem 2rem;
    background: white;
}

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

.content-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.content-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coffee-amber);
    margin-bottom: 1rem;
    display: block;
}

.content-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--coffee-dark);
}

.content-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--coffee-text-dark);
    margin-bottom: 1.5rem;
}

/* ===================================
   VISION & MISSION
   =================================== */
.vm-section {
    position: relative;
    padding: 3rem 2rem;
    background: var(--coffee-dark);
    overflow: hidden;
}

.vm-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/field-with-coffee-beans-tree-branches-sunlight-with-blurry-wall-guatemala.jpg') center / cover no-repeat;
    opacity: 0.18;
    pointer-events: none;
}

.vm-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.vm-card {
    background: rgba(92, 58, 33, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 237, 225, 0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--coffee-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.vm-title {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--coffee-cream);
    margin-bottom: 1rem;
}

.vm-text {
    color: var(--coffee-cream);
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* ===================================
   VALUES SECTION
   =================================== */
.values-section {
    padding: 3rem 2rem;
    background: var(--coffee-cream);
}

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

.values-header {
    text-align: center;
    margin-bottom: 2rem;
}

.values-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coffee-amber);
    margin-bottom: 1rem;
    display: block;
}

.values-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--coffee-dark);
}

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

.value-card {
    padding: 2.5rem 2rem;
    text-align: center;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--coffee-amber);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.value-title {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 1rem;
}

.value-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--coffee-text-dark);
}

/* ===================================
   COLLAGE SECTION (.collage- / .anim)
   =================================== */
.collage-section {
    padding: 3rem 2rem;
    background: var(--coffee-dark);
}

.collage-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    height: clamp(220px, 45vw, 500px);
}

.collage-side {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.collage-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.collage-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Collage Animations */
.anim {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.collage-side.anim {
    transform: translateX(-50px);
}

.collage-grid img:nth-child(1).anim {
    transform: translateY(-30px);
}

.collage-grid img:nth-child(2).anim {
    transform: translateX(30px);
}

.collage-grid img:nth-child(3).anim {
    transform: translateY(30px);
}

.collage-grid img:nth-child(4).anim {
    transform: translateX(30px);
}

.anim.in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===================================
   DETAILS SECTION
   =================================== */
.details-section {
    padding: 3rem 2rem;
    background: white;
}

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

.details-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.details-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coffee-amber);
    margin-bottom: 1rem;
    display: block;
}

.details-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--coffee-dark);
}

.details-card {
    background: var(--coffee-cream);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.detail-item {
    display: flex;
    gap: 1.5rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--coffee-amber);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.detail-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--coffee-brown);
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--coffee-dark);
    line-height: 1.6;
}

/* ===================================
   TEAM SHOWCASE (.sc-)
   =================================== */
.sc-section {
    padding: 3rem 2rem;
    background: var(--coffee-cream);
}

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

.sc-header {
    text-align: center;
    margin-bottom: 2rem;
}

.sc-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coffee-amber);
    margin-bottom: 1rem;
    display: block;
}

.sc-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--coffee-dark);
}

.sc-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sc-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sc-photo {
    display: none;
}

.sc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.sc-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.sc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem;
    background: linear-gradient(to top, rgba(43, 27, 18, 0.95) 0%, rgba(43, 27, 18, 0.7) 70%, transparent 100%);
    color: var(--coffee-cream);
}

.sc-name {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.sc-role {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Team Row Animations */
.sc-anim {
    opacity: 0;
    transition: transform 2.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.sc-row-1.sc-anim {
    transform: translateX(100vw);
}

.sc-row-2.sc-anim {
    transform: translateX(-100vw);
}

.sc-anim.sc-in-view {
    opacity: 1;
    transform: translateX(0);
}

@media (min-width: 769px) {
    .sc-container {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        column-gap: 2rem;
        row-gap: 3rem;
    }

    .sc-header {
        grid-column: 1 / -1;
    }

    .sc-row-1,
    .sc-row-2 {
        display: contents;
    }

    .sc-row-1.sc-anim,
    .sc-row-2.sc-anim {
        opacity: 1;
        transform: none;
    }

    .sc-row-1 .sc-card:nth-child(1) {
        grid-column: 2 / 4;
        grid-row: 2;
    }

    .sc-row-1 .sc-card:nth-child(2) {
        grid-column: 1;
        grid-row: 3;
    }

    .sc-row-1 .sc-card:nth-child(3) {
        grid-column: 2;
        grid-row: 3;
    }

    .sc-row-1 .sc-card:nth-child(4) {
        grid-column: 3;
        grid-row: 3;
    }

    .sc-row-2 .sc-card {
        grid-column: 4;
        grid-row: 3;
    }

    .sc-row-1 .sc-card:nth-child(1)::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -3rem;
        width: 2px;
        height: 3rem;
        background: var(--coffee-gold-line);
    }

    .sc-row-1 .sc-card:not(:first-child)::before,
    .sc-row-2 .sc-card::before {
        content: '';
        position: absolute;
        left: -1rem;
        right: -1rem;
        top: -1.5rem;
        height: 2px;
        background: var(--coffee-gold-line);
    }

    .sc-card {
        overflow: visible;
        background: var(--coffee-brown);
        border-radius: 4px;
    }

    .sc-caption {
        position: static;
        background: var(--coffee-brown);
        text-align: center;
    }
}

/* ===================================
   ACTIVITIES & CAPACITY
   =================================== */
.activities-section,
.capacity-section {
    padding: 3rem 2rem;
}

.activities-section {
    background: white;
}

.capacity-section {
    background: var(--coffee-cream);
}

.activities-container,
.capacity-container {
    max-width: 1400px;
    margin: 0 auto;
}

.activities-header,
.capacity-header {
    text-align: center;
    margin-bottom: 2rem;
}

.activities-eyebrow,
.capacity-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coffee-amber);
    margin-bottom: 1rem;
    display: block;
}

.activities-title,
.capacity-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--coffee-dark);
}

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

.activity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.activity-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: var(--coffee-amber);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.activity-title {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 1rem;
}

.activity-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--coffee-text-dark);
}

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

.capacity-card {
    padding: 2.5rem 2rem;
    text-align: center;
}

.capacity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--coffee-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coffee-amber);
    font-size: 1.8rem;
}

.capacity-card-title {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 1rem;
}

.capacity-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--coffee-text-dark);
}

/* ===================================
   MARKETS SECTION
   =================================== */
.markets-section {
    padding: 3rem 2rem;
    background: var(--coffee-cream);
}

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

.markets-header {
    text-align: center;
    margin-bottom: 2rem;
}

.markets-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coffee-amber);
    margin-bottom: 1rem;
    display: block;
}

.markets-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--coffee-dark);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.market-card {
    background: #fffaf0;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.market-card::before {
    content: '';
    display: block;
    height: 180px;
    margin: -2.5rem -2rem 2rem;
    background-position: center;
    background-size: cover;
}

.market-card:nth-child(1)::before {
    background-image: url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=900&q=80');
}

.market-card:nth-child(2)::before {
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=900&q=80');
}

.market-card:nth-child(3)::before {
    background-image: url('https://images.unsplash.com/photo-1485738422979-f5c462d49f74?auto=format&fit=crop&w=900&q=80');
}

.market-card:nth-child(4)::before {
    background-image: url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=900&q=80');
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.market-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: var(--coffee-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.market-title {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 1rem;
}

.market-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--coffee-text-dark);
    margin-bottom: 1.5rem;
}

.market-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #c8a27a;
    margin: 0 -2rem -2.5rem;
    padding: 1.5rem 2rem 2.5rem;
    border-radius: 0 0 16px 16px;
}

.market-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--coffee-text-dark);
}

.market-highlights i {
    color: var(--coffee-amber);
    font-size: 0.9rem;
}

/* ===================================
   COMPLIANCE SECTION
   =================================== */
.compliance-section {
    padding: 3rem 2rem;
    background: white;
}

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

.compliance-header {
    text-align: center;
    margin-bottom: 2rem;
}

.compliance-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coffee-amber);
    margin-bottom: 1rem;
    display: block;
}

.compliance-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--coffee-dark);
}

.compliance-checklist {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.checklist-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
    aspect-ratio: 1 / 1;
    padding: 2rem;
    border: 1px solid rgba(92, 58, 33, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.checklist-item + .checklist-item {
    border-left: 0;
}

.checklist-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.checklist-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: var(--coffee-amber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.checklist-item.animate-in .checklist-icon {
    transform: scale(1);
}

.checklist-content {
    flex: 1;
}

.checklist-title {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 0.75rem;
}

.checklist-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--coffee-text-dark);
}

/* ===================================
   RISK SECTION
   =================================== */
.risk-section {
    padding: 3rem 2rem;
    background: var(--coffee-dark);
}

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

.risk-header {
    text-align: center;
    margin-bottom: 2rem;
}

.risk-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coffee-amber);
    margin-bottom: 1rem;
    display: block;
}

.risk-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--coffee-cream);
}

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

.risk-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2.5rem 2rem;
    text-align: center;
}

.risk-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--coffee-amber);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.risk-card-title {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--coffee-cream);
    margin-bottom: 1rem;
}

.risk-card-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--coffee-cream);
    opacity: 0.9;
}

/* ===================================
   COMMITMENT SECTION
   =================================== */
.commitment-section {
    padding: 3rem 2rem;
    background: white;
}

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

.commitment-header {
    text-align: center;
    margin-bottom: 2rem;
}

.commitment-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coffee-amber);
    margin-bottom: 1rem;
    display: block;
}

.commitment-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--coffee-dark);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.commitment-item {
    background: var(--coffee-cream);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.commitment-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    background: var(--coffee-amber);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.commitment-title-item {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 1rem;
}

.commitment-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--coffee-text-dark);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: 3rem 2rem;
    background: var(--coffee-cream);
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.contact-form-wrapper,
.contact-details-wrapper {
    background: white;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-title,
.contact-details-title {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 2rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 0.5rem;
    border: none;
    border-bottom: 2px solid rgba(92, 58, 33, 0.3);
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    color: var(--coffee-text-dark);
    transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

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

.form-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1rem;
    color: var(--coffee-brown);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--coffee-amber);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.75rem;
    color: var(--coffee-amber);
}

.form-group input:focus::after,
.form-group textarea:focus::after {
    transform: scaleX(1);
}

.contact-submit {
    padding: 1rem 2rem;
    background: var(--coffee-amber);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
}

.contact-submit:hover {
    background: #9d6526;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(180, 119, 46, 0.4);
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--coffee-amber);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-detail-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--coffee-brown);
    margin-bottom: 0.5rem;
}

.contact-detail-value {
    font-size: 1rem;
    color: var(--coffee-text-dark);
    line-height: 1.6;
}

/* Contact Social */
.contact-social {
    padding-top: 2rem;
    border-top: 2px solid rgba(92, 58, 33, 0.1);
}

.contact-social-title {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 1rem;
}

.contact-social-icons {
    display: flex;
    gap: 1rem;
}

.contact-social-icons a {
    width: 44px;
    height: 44px;
    background: var(--coffee-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coffee-cream);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-social-icons a:hover {
    background: var(--coffee-amber);
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container iframe {
    width: 100%;
    display: block;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--coffee-dark);
    color: var(--coffee-cream);
    padding: 2.5rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(243, 237, 225, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coffee-cream);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    background: var(--coffee-amber);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--coffee-amber);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--coffee-cream);
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--coffee-amber);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--coffee-amber);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-newsletter {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(243, 237, 225, 0.2);
    background: rgba(243, 237, 225, 0.1);
    border-radius: 6px;
    color: var(--coffee-cream);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-newsletter input::placeholder {
    color: rgba(243, 237, 225, 0.6);
}

.footer-newsletter input:focus {
    border-color: var(--coffee-amber);
    background: rgba(243, 237, 225, 0.15);
}

.footer-newsletter button {
    padding: 0.75rem 1rem;
    background: var(--coffee-amber);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-newsletter button:hover {
    background: #9d6526;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(243, 237, 225, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===================================
   CARD ANIMATION (generic)
   =================================== */
.card-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-anim.card-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Large Desktop */
@media (min-width: 1280px) {
    .nh-nav-container,
    .offer-container,
    .content-container,
    .markets-container,
    .sc-container,
    .activities-container,
    .capacity-container,
    .compliance-container,
    .commitment-container,
    .risk-container,
    .contact-container {
        max-width: 1400px;
    }
}

/* Tablet / Small Laptop */
@media (max-width: 1024px) {
    .nh-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }

    .nh-rail {
        right: 2rem;
        gap: 1.5rem;
    }

    .nh-scroll-cue {
        left: 2rem;
        bottom: 2rem;
    }

    .feature-container {
        gap: 2rem;
    }

    .feature-card {
        padding: 2.5rem;
    }

    .offer-content {
        grid-template-columns: 1fr;
    }

    .offer-specialty-card {
        min-height: 400px;
    }

    .sc-row {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Small Tablet */
@media (max-width: 768px) {
    .nh-nav-links,
    .nh-nav-cta {
        display: none;
    }

    .nh-nav-hamburger {
        display: flex;
    }

    .nh-nav-mobile {
        display: flex;
    }

    .nh-rail {
        display: none;
    }

    .nh-scroll-cue {
        left: 50%;
        transform: translateX(-50%);
        bottom: 2rem;
    }

    .feature-container {
        flex-direction: column;
    }

    .feature-card {
        flex: 1;
        width: 100%;
    }

    .feature-photo {
        margin-top: -2rem;
        max-width: 100%;
    }

    .sc-card {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .sc-photo {
        flex: 1;
        aspect-ratio: 1 / 1;
    }

    .sc-caption {
        position: static;
        flex: 1;
        padding: 1.5rem;
        background: var(--coffee-dark);
    }

    .sc-container {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .sc-header {
        grid-column: 1 / -1;
    }

    .sc-row-1,
    .sc-row-2 {
        display: contents;
    }

    .sc-row-1.sc-anim,
    .sc-row-2.sc-anim {
        opacity: 1 !important;
        transform: none !important;
    }

    .sc-row-1 .sc-card:nth-child(1) {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .sc-row-1 .sc-card:nth-child(2),
    .sc-row-1 .sc-card:nth-child(3),
    .sc-row-1 .sc-card:nth-child(4),
    .sc-row-2 .sc-card {
        grid-row: 3;
    }

    .sc-row-1 .sc-card:nth-child(2) {
        grid-column: 1;
    }

    .sc-row-1 .sc-card:nth-child(3) {
        grid-column: 2;
    }

    .sc-row-1 .sc-card:nth-child(4) {
        grid-column: 1;
        grid-row: 4;
    }

    .sc-row-2 .sc-card {
        grid-column: 2;
        grid-row: 4;
    }

    .sc-card {
        overflow: visible;
        background: var(--coffee-brown);
        border-radius: 4px;
        display: block;
    }

    .sc-caption {
        position: static;
        padding: 1rem;
        background: var(--coffee-brown);
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .compliance-checklist {
        grid-template-columns: 1fr;
    }

    .checklist-item {
        aspect-ratio: auto;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .nh-nav-container {
        padding: 1rem;
    }

    .sc-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .sc-card {
        min-width: 0;
    }

    .sc-row-1 .sc-card:not(:first-child)::before,
    .sc-row-2 .sc-card::before {
        content: '';
        position: absolute;
        top: -1rem;
        left: 50%;
        width: 2px;
        height: 1rem;
        background: var(--coffee-gold-line);
    }

    .sc-row-1 .sc-card:nth-child(1) {
        grid-column: 1;
        grid-row: 2;
    }

    .sc-row-1 .sc-card:nth-child(2),
    .sc-row-1 .sc-card:nth-child(3),
    .sc-row-1 .sc-card:nth-child(4),
    .sc-row-2 .sc-card {
        grid-column: 1;
    }

    .sc-row-1 .sc-card:nth-child(2) {
        grid-row: 3;
    }

    .sc-row-1 .sc-card:nth-child(3) {
        grid-row: 4;
    }

    .sc-row-1 .sc-card:nth-child(4) {
        grid-row: 5;
    }

    .sc-row-2 .sc-card {
        grid-column: 1;
        grid-row: 6;
    }

    .sc-caption {
        padding: 0.55rem 0.2rem;
    }

    .sc-name {
        font-size: 0.95rem;
        line-height: 1.2;
    }

    .sc-role {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .nh-nav-logo img {
        height: 40px;
    }

    .nh-nav-logo {
        display: flex;
        align-items: center;
        gap: 0.6rem;
    }

    .nh-nav-logo span {
        display: inline;
        color: var(--coffee-cream);
        font-family: 'Fraunces', serif;
        font-size: 0.95rem;
        font-weight: 700;
        white-space: nowrap;
    }

    .nh-hero-content {
        padding: 0 1.5rem;
    }

    .nh-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .nh-btn-primary,
    .nh-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .page-hero {
        min-height: 300px;
    }

    .feature-section {
        padding: 2rem 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .quick-stats,
    .offer-section,
    .content-section,
    .values-section,
    .collage-section,
    .details-section,
    .sc-section,
    .activities-section,
    .capacity-section,
    .markets-section,
    .compliance-section,
    .risk-section,
    .commitment-section,
    .contact-section {
        padding: 2rem 1.5rem;
    }

    .offer-stats,
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .values-grid,
    .markets-grid,
    .activities-list,
    .capacity-grid,
    .commitment-grid,
    .risk-grid {
        grid-template-columns: 1fr;
    }

    .sc-row {
        grid-template-columns: 1fr;
    }

    .sc-card {
        flex-direction: column;
    }

    .sc-caption {
        position: absolute;
        padding: 1rem;
    }

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

    .checklist-item {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper,
    .contact-details-wrapper {
        padding: 2rem 1.5rem;
    }

    .collage-container {
        height: clamp(180px, 40vw, 400px);
        gap: 1rem;
    }

    .collage-grid {
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .sc-container {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.25rem;
        width: min(100%, 360px);
        margin: 0 auto;
        padding: 0 0.75rem;
    }

    .sc-header {
        grid-column: 1;
        grid-row: 1;
    }

    .orgchart-mobile-connector {
        display: contents;
        opacity: 1 !important;
        transform: none !important;
    }

    .orgchart-mobile-node {
        position: relative;
        display: block;
        grid-column: 1;
        min-width: 0;
        width: calc(100% - 2rem);
        margin: 0 auto;
        overflow: visible;
        background: var(--coffee-cream);
        border: 1px solid rgba(92, 58, 33, 0.25);
        border-radius: 8px;
        box-shadow: 0 4px 14px rgba(43, 27, 18, 0.12);
    }

    .orgchart-mobile-node .sc-photo {
        display: none;
    }

    .orgchart-mobile-node .sc-caption {
        position: static;
        display: block;
        padding: 0.9rem 0.75rem;
        background: transparent;
        color: var(--coffee-dark);
        text-align: center;
    }

    .orgchart-mobile-node .sc-name {
        margin-bottom: 0.25rem;
        font-size: 0.95rem;
        line-height: 1.25;
    }

    .orgchart-mobile-node .sc-role {
        color: var(--coffee-brown);
        font-size: 0.72rem;
        line-height: 1.35;
    }

    .sc-row-1 .orgchart-mobile-node:nth-child(1) {
        grid-row: 2;
        width: min(100%, 230px);
        background: var(--coffee-brown);
        border: 2px solid var(--coffee-amber);
    }

    .sc-row-1 .orgchart-mobile-node:nth-child(1) .sc-caption {
        color: var(--coffee-cream);
    }

    .sc-row-1 .orgchart-mobile-node:nth-child(1) .sc-role {
        color: var(--coffee-cream);
    }

    .sc-row-1 .orgchart-mobile-node:nth-child(2) {
        grid-row: 3;
    }

    .sc-row-1 .orgchart-mobile-node:nth-child(3) {
        grid-row: 4;
    }

    .sc-row-1 .orgchart-mobile-node:nth-child(4) {
        grid-row: 5;
    }

    .sc-row-2 .orgchart-mobile-node {
        grid-row: 6;
    }

    .sc-container::before {
        content: '';
        position: absolute;
        left: 2rem;
        top: 18rem;
        bottom: 1.5rem;
        width: 2px;
        background: var(--coffee-gold-line);
    }

    .sc-row-1 .orgchart-mobile-node:nth-child(n + 2)::before,
    .sc-row-2 .orgchart-mobile-node::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -1.25rem;
        width: 1.25rem;
        height: 2px;
        background: var(--coffee-gold-line);
    }

    .sc-row-1 .orgchart-mobile-node:nth-child(1)::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -1.25rem;
        width: 2px;
        height: 1.25rem;
        background: var(--coffee-gold-line);
    }
}

/* Short Viewport */
@media (max-height: 600px) {
    .nh-hero {
        min-height: 500px;
    }

    .nh-hero-content {
        padding: 5rem 2rem 2rem;
    }

    .nh-title {
        font-size: 2rem;
    }

    .nh-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Focus Styles for Accessibility */
*:focus-visible {
    outline: 3px solid var(--coffee-amber);
    outline-offset: 3px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--coffee-amber);
    outline-offset: 2px;
}

.collage {
    display: flex;
    gap: clamp(6px, 1.5vw, 12px);
    width: 100%;
    max-width: 1000px;
    height: clamp(220px, 45vw, 500px);
    margin: 0 auto;
    box-sizing: border-box;
}
.collage * { box-sizing: border-box; }
.collage-side { flex: 1; height: 100%; border-radius: 10px; overflow: hidden; }
.collage-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collage-grid {
    flex: 2; height: 100%; display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: clamp(6px, 1.5vw, 12px);
}
.collage-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; }
.collage-grid .anim { width: 100%; height: 100%; overflow: hidden; border-radius: 10px; }
.anim {
    opacity: 0;
    transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1), opacity 2s ease;
    will-change: transform, opacity;
}
.anim[data-dir="left"]   { transform: translateX(-60px); }
.anim[data-dir="right"]  { transform: translateX(60px); }
.anim[data-dir="top"]    { transform: translateY(-60px); }
.anim[data-dir="bottom"] { transform: translateY(60px); }
.anim.in-view { opacity: 1; transform: translate(0, 0); }
@media (prefers-reduced-motion: reduce) {
    .anim { transition: none; opacity: 1; transform: none; }
}

.showcase {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    box-sizing: border-box;
}
.showcase * { box-sizing: border-box; }
.showcase-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(8px, 1.5vw, 18px);
}
.showcase-card-wrap { position: relative; }
.showcase-card {
    aspect-ratio: 3 / 3;
    border-radius: 10px;
    overflow: hidden;
}
.showcase-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: clamp(6px, 1.5vw, 12px);
    font-size: clamp(11px, 1.3vw, 14px);
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
    line-height: 1.3;
}
@media (min-width: 768px) {
    .showcase { max-width: 1100px; }
    .showcase-card-wrap { display: flex; flex-direction: row; align-items: center; }
    .showcase-card { flex-shrink: 0; width: 55%; }
    .showcase-caption { position: static; background: none; padding: 0 0 0 8px; color: #000; }
}
.sc-anim {
    opacity: 0;
    transition: transform 3.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.5s ease;
    will-change: transform, opacity;
}
.sc-anim[data-dir="right"] { transform: translateX(100vw); }
.sc-anim[data-dir="left"]  { transform: translateX(-100vw); }
.sc-anim.sc-in-view { opacity: 1; transform: translate(0, 0); }
@media (prefers-reduced-motion: reduce) {
    .sc-anim { transition: none; opacity: 1; transform: none; }
}
