/* ===== MARQUEE ===== */
.marquee {
    padding: 18px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 100%;
}

.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-secondary), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-secondary), transparent);
}

.marquee-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 28px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    white-space: nowrap;
    flex: 0 0 auto;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
    flex: 0 0 auto;
    box-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== MISSION ===== */
.mission {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-quote {
    position: relative;
}

.mission-mark {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    line-height: 0.5;
    color: var(--green);
    opacity: 0.15;
    display: block;
    margin-bottom: -20px;
}

.mission-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-secondary);
}

.mission-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.author-line {
    width: 40px;
    height: 2px;
    background: var(--green);
}

.mission-author span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== STATEMENT ===== */
.statement {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
    overflow: hidden;
}

.statement::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 200, 83, 0.06), transparent 60%);
    pointer-events: none;
}

.statement-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* ===== BRANDS MARQUEE ===== */
.brands-section {
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

.brands-label {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.brands-marquee {
    overflow: hidden;
    position: relative;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-secondary), transparent);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-secondary), transparent);
}

.brands-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    width: max-content;
    animation: brandsScroll 40s linear infinite;
    will-change: transform;
}

.brand-item {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;
    color: var(--text-secondary);
    white-space: nowrap;
    flex: 0 0 auto;
    transition: color var(--transition);
    letter-spacing: 0.3px;
}

.brand-item:hover {
    color: var(--green);
}

.brand-sep {
    color: var(--green);
    opacity: 0.3;
    font-size: 0.9rem;
    flex: 0 0 auto;
}

@keyframes brandsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== ABOUT CTA ===== */
.about-cta {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}
