/* Sample Site – Primary #0B8CCB, Secondary #7DD21C, Background white */
:root {
    --primary: #0B8CCB;
    --secondary: #7DD21C;
    --primary-rgb: 11, 140, 203;
    --secondary-rgb: 125, 210, 28;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --text: #1e293b;
    --text-muted: #64748b;
    --navy-light: #0f172a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; padding-top: 64px; overflow-x: hidden; }
.s2-main { min-height: calc(100vh - 200px); min-width: 0; overflow-x: hidden; }

/* Header */
.s2-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(16px);
    padding: 0 1.5rem; height: 64px;
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.s2-header-inner { display: flex; align-items: center; gap: 2.5rem; width: 100%; margin: 0 auto; }
.s2-logo {
    display: flex; align-items: center; text-decoration: none; flex-shrink: 0;
}
.s2-logo img { height: 40px; width: auto; display: block; object-fit: contain; }
.s2-logo:hover img { opacity: 0.9; }
.s2-nav {
    display: flex; align-items: center; gap: 0.15rem; flex: 1; justify-content: center;
}
.s2-nav > a, .s2-nav-dropdown > a {
    color: var(--text-muted); text-decoration: none; font-size: 0.925rem; font-weight: 500;
    transition: color 0.2s, background 0.2s; padding: 0.5rem 0.75rem; border-radius: 6px;
}
.s2-nav > a:hover, .s2-nav-dropdown > a:hover, .s2-nav > a.active, .s2-nav-dropdown > a.active {
    color: var(--primary);
}
.s2-nav-dropdown { position: relative; }
.s2-nav-dropdown > a { display: inline-flex; align-items: center; gap: 0.35rem; }
.s2-nav-dropdown > a::after {
    content: ''; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
    border-top: 5px solid currentColor; margin-left: 0.2rem; opacity: 0.7;
}
.s2-nav-dropdown:hover > a { color: var(--primary); }
.s2-nav-dropdown:hover .s2-nav-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.s2-nav-submenu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-4px);
    min-width: 220px; margin-top: 0.5rem; padding: 0.5rem;
    background: #fff; border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px; box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    z-index: 50;
}
.s2-nav-submenu a {
    display: block; padding: 0.6rem 1rem; color: var(--text-muted); white-space: nowrap;
    border-radius: 6px; transition: background 0.15s, color 0.15s; font-size: 0.9rem;
}
.s2-nav-submenu a:hover { background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }
.s2-nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.s2-btn-outline {
    border: 2px solid var(--primary); color: var(--primary); padding: 0.5rem 1.25rem;
    border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.9rem;
    transition: all 0.2s; white-space: nowrap;
}
.s2-btn-outline:hover { background: var(--primary); color: #fff; }
.s2-nav a.s2-btn-outline.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.s2-nav-actions .s2-btn-outline {
    border-color: #dc2626; color: #dc2626;
}
.s2-nav-actions .s2-btn-outline:hover { background: #dc2626; color: #fff; border-color: #dc2626; }
.s2-nav-actions a.s2-btn-outline.active { background: #dc2626; color: #fff; border-color: #dc2626; }
.s2-cart-link {
    display: inline-flex; align-items: center; gap: 0.4rem; position: relative;
    color: var(--text-muted); text-decoration: none; padding: 0.5rem 0.75rem; border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.s2-cart-link:hover { color: var(--primary); }
.s2-cart-link .fa-handshake-o { font-size: 1.2rem; }
.s2-cart-count {
    min-width: 20px; height: 20px; padding: 0 6px; border-radius: 10px;
    background: var(--secondary); color: #fff; font-size: 0.7rem; font-weight: 700;
    line-height: 20px; text-align: center; display: inline-flex; align-items: center; justify-content: center;
}
.s2-cart-count:empty { display: none; }
.s2-nav-toggle {
    display: none; background: none; border: none; color: var(--text); font-size: 1.35rem;
    cursor: pointer; padding: 0.5rem; transition: color 0.2s;
}
.s2-nav-toggle:hover { color: var(--primary); }
.s2-nav-mobile {
    display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: #fff; z-index: 99; overflow-y: auto;
    padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.s2-nav-mobile.is-open { opacity: 1; visibility: visible; }
.s2-nav-mobile a, .s2-nav-mobile .s2-nav-mobile-sub a {
    display: block; padding: 0.75rem 0; color: var(--text-muted); text-decoration: none;
    font-size: 1rem; border-bottom: 1px solid rgba(0,0,0,0.06); transition: color 0.2s;
}
.s2-nav-mobile a:hover { color: var(--primary); }
.s2-nav-mobile .s2-nav-mobile-sub { padding-left: 1rem; margin-bottom: 0.5rem; }
.s2-nav-mobile .s2-nav-mobile-sub a { padding: 0.5rem 0; font-size: 0.9rem; border: none; }
.s2-nav-mobile .s2-nav-actions { display: flex; gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.1); }
@media (max-width: 1024px) {
    .s2-nav { display: none; }
    .s2-nav-toggle { display: block; }
    .s2-header-inner { justify-content: space-between; }
    .s2-nav-mobile { display: block; }
}
@media (max-width: 900px) {
    body { padding-top: 56px; }
    .s2-header { padding: 0 1rem; height: auto; min-height: 56px; padding: 0.75rem 1rem; }
    .s2-nav-mobile { top: 56px; }
    .s2-nav-actions .s2-btn-outline { padding: 0.45rem 1rem; font-size: 0.85rem; }
}

/* Banner */
.s2-banner {
    position: relative; min-height: 70vh; display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.s2-banner-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat;
    animation: s2-banner-zoom 20s ease-in-out infinite alternate;
}
.s2-banner-video {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
@keyframes s2-banner-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.s2-banner-content {
    position: absolute; top: 1.5rem; right: 1.5rem; z-index: 2;
}
.s2-banner-content--boxed {
    top: 50%; left: 1.5rem; right: auto; transform: translateY(-50%);
    padding: 0; text-align: left;
    display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem;
}
.s2-banner-content--boxed h1,
.s2-banner-content--boxed .tagline {
    color: #1a1a1a; margin: 0; text-align: left;
    background: rgba(255, 255, 255, 0.35); backdrop-filter: blur(8px);
    padding: 0.5rem 1rem; border-radius: 6px;
    display: inline-block;
}
.s2-banner-content--boxed h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.s2-banner-content--boxed .tagline { font-size: 1rem; opacity: 0.9; }
.s2-banner-btn {
    background: #dc2626 !important; color: #fff !important;
}
.s2-banner-btn:hover {
    background: #b91c1c !important; box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
}
@media (max-width: 768px) {
    .s2-banner { min-height: 60vh; }
    .s2-banner-content { top: 1rem; right: 1rem; }
    .s2-banner-content--boxed { left: 1rem; }
    .s2-banner-content--boxed h1,
    .s2-banner-content--boxed .tagline { padding: 0.4rem 0.85rem; }
}

/* Page hero */
.s2-page-hero {
    padding: 2rem 1.5rem 1rem; text-align: center;
    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.08) 0%, transparent 100%);
}
.s2-page-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.s2-page-hero .tagline { font-size: 1rem; color: var(--text-muted); }

/* Sections */
.s2-section { padding: 1rem 1.5rem; margin: 0 auto; min-width: 0; }
@media (min-width: 1200px) {
    .s2-section { padding: 1.5rem 2rem; }
    .s2-section--compact { padding-top: 0.25rem; padding-bottom: 0.25rem; }
}
.s2-section--compact-top { padding-top: 1.5rem; }
.s2-section--light { background: var(--bg-alt); }
.s2-tagline { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--primary); font-weight: 600; margin-bottom: 0.75rem; }
.s2-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--primary); }
.s2-intro {
    font-size: 1.05rem; color: var(--text-muted); margin-bottom: 2rem; text-align: justify;
    border-left: 4px solid var(--secondary);
    border-right: 4px solid var(--secondary);
    padding-left: 1.5rem; padding-right: 1.5rem; margin-left: 0.25rem; margin-right: 0.25rem;
    border-radius: 8px;
}

/* Grid & Cards */
.s2-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.s2-policies-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem;
}
.s2-policy-card {
    background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; padding: 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06); transition: border-color 0.2s, box-shadow 0.2s;

    background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.08) 0%, transparent 100%);
}
.s2-policy-card:hover { border-color: var(--primary); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.s2-policy-card h2 { font-size: 1.1rem; margin: 0 0 1rem; color: var(--primary); }
.s2-policy-card ul { padding-left: 1.25rem; margin: 0; }
.s2-policy-card li { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 0.4rem; }
@media (max-width: 900px) {
    .s2-policies-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .s2-policies-grid { grid-template-columns: 1fr; }
}
.s2-card {
    background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; overflow: hidden;
    transition: border-color 0.2s, transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.s2-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.s2-card img,
.s2-card video { width: 100%; height: 250px; object-fit: cover; opacity: 0.95; display: block; }
.s2-card-media {
    width: 100%; height: 250px; min-height: 250px; overflow: hidden; background: #1e293b;
}
.s2-card-media video { width: 100%; height: 100%; min-height: 250px; }
.s2-card-link { text-decoration: none; color: inherit; display: block; }
.s2-card-link:hover { color: inherit; }
.s2-card-cta { color: var(--primary); font-weight: 500; }
.s2-card-link:hover .s2-card-cta { text-decoration: underline; }
.s2-card-body { padding: 1.5rem; }
.s2-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.s2-card p { font-size: 0.9rem; color: var(--text-muted); }
.s2-card a { text-decoration: none; font-weight: 500; }
.s2-card a:hover { color: var(--secondary); text-decoration: underline; }

/* Focus items */
.s2-focus { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.s2-focus-item {
    text-align: center; padding: 2rem; background: #fff; border-radius: 12px; border-left: 4px solid var(--secondary);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.s2-focus-item img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }
.s2-focus-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.s2-focus-item p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.s2-focus-item .s2-btn { display: inline-block; margin-top: 0.25rem; }

/* Content blocks */
.s2-content { margin: 0 auto; }
.s2-content h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; color: var(--primary); margin: 0 0 0.75rem; }
.s2-content h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; color: var(--text); }
.s2-content p, .s2-content li { color: var(--text-muted); margin-bottom: 1rem; }
.s2-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.s2-content a { color: var(--primary); }

/* List items */
.s2-list-item {
    padding: 1.5rem; background: #fff; border-radius: 12px; border-left: 4px solid var(--primary);
    margin-bottom: 1rem; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.s2-list-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1.5rem;
}
.s2-list-grid .s2-list-item { margin-bottom: 0; }
@media (max-width: 768px) {
    .s2-list-grid { grid-template-columns: 1fr; }
}
.s2-list-item h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.s2-list-item .meta { font-size: 0.9rem; color: var(--primary); font-weight: 600; margin-bottom: 0.25rem; }
.s2-list-item .detail { font-size: 0.9rem; color: var(--text-muted); }

/* Blog cards */
.s2-blog-card {
    display: grid; grid-template-columns: 175px 1fr; gap: 1.25rem; align-items: start;
    padding: 1.5rem; background: #fff; border-radius: 12px; border-left: 4px solid var(--primary);
    margin-bottom: 1rem; box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.s2-blog-card-img { border-radius: 8px; overflow: hidden; background: var(--bg-alt); flex-shrink: 0; }
.s2-blog-card-img img { width: 175px; height: 175px; object-fit: cover; display: block; }
.s2-blog-card-body { min-width: 0; }
.s2-blog-card .meta { font-size: 0.9rem; color: var(--primary); font-weight: 600; margin-bottom: 0.25rem; }
.s2-blog-card h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.s2-blog-card h4 a { color: inherit; text-decoration: none; }
.s2-blog-card h4 a:hover { color: var(--primary); }
.s2-blog-card .detail { font-size: 0.9rem; color: var(--text-muted); margin: 0; }
@media (max-width: 600px) {
    .s2-blog-card { grid-template-columns: 1fr; }
    .s2-blog-card-img img { width: 100%; height: 200px; }
}

/* Two-column layout */
.s2-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: stretch; }
@media (max-width: 768px) { .s2-two-col { grid-template-columns: 1fr; } }
.s2-two-col img { width: 100%; border-radius: 12px; }
.s2-two-col__img-center { align-self: center; }
.s2-objectives-full { width: 100%; max-width: none; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(0,0,0,0.08); }

/* Outreach summary table */
.s2-outreach-content {
    background: rgba(var(--secondary-rgb), 0.08);
    border: 2px solid rgba(var(--secondary-rgb), 0.4);
    border-radius: 12px;
    padding: 1.5rem;
}
.s2-outreach-row { align-items: start; gap: 1.5rem; }
.s2-outreach-row .s2-intro { border: none; padding: 0; margin: 0; min-width: 0; display: flex; }
.s2-outreach-row .s2-outreach-content { flex: 1; }
.s2-outreach-content h2 { color: var(--secondary); margin: 0 0 0.5rem; }
.s2-outreach-table { width: 100%; border-collapse: collapse; margin: 1rem 0 0; }
.s2-outreach-table td { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
.s2-outreach-table td:last-child { text-align: right; font-weight: 600; color: var(--secondary); white-space: nowrap; }
.s2-outreach-imgs {
    display: flex; width: 100%; min-width: 0;
}
.s2-outreach-row:has(.s2-outreach-imgs:empty) { grid-template-columns: 1fr; }
.s2-outreach-imgs:empty { display: none; }
.s2-outreach-diamonds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 4.55rem;
    padding: 1.5rem;
    /* background: #5a9b92; */
    width: 100%;
    min-height: 320px;
    border-radius: 12px;
    justify-items: center;
    align-items: center;
}
.s2-outreach-diamonds .s2-outreach-flip:nth-child(1) { grid-column: 1; grid-row: 1; }
.s2-outreach-diamonds .s2-outreach-flip:nth-child(2) { grid-column: 2; grid-row: 1; }
.s2-outreach-diamonds .s2-outreach-flip:nth-child(3) { grid-column: 3; grid-row: 1; }
.s2-outreach-diamonds .s2-outreach-flip:nth-child(4) { grid-column: 1; grid-row: 2; transform: rotate(45deg) translateY(-175px) translateX(5px); }
.s2-outreach-diamonds .s2-outreach-flip:nth-child(5) { grid-column: 2; grid-row: 2; transform: rotate(45deg) translateY(-175px) translateX(5px); }
.s2-outreach-diamonds .s2-outreach-flip:nth-child(6) { grid-column: 1; grid-row: 3; transform: rotate(45deg) translateY(-170px) translateX(-175px); }
.s2-outreach-diamonds .s2-outreach-flip:nth-child(7) { grid-column: 2; grid-row: 3; transform: rotate(45deg) translateY(-170px) translateX(-170px); }
.s2-outreach-diamonds .s2-outreach-flip:nth-child(8) { grid-column: 3; grid-row: 3; transform: rotate(45deg) translateY(-170px) translateX(-170px); }
.s2-outreach-flip {
    width: min(180px, 15vw);
    height: min(180px, 15vw);
    overflow: hidden;
    background: #f5f5f0;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transform: rotate(45deg);
    flex-shrink: 0;
}
.s2-outreach-flip-inner {
    width: 142%;
    height: 142%;
    margin-left: -21%;
    margin-top: -21%;
    transform: rotate(-45deg);
}
.s2-outreach-flip-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .s2-outreach-diamonds {
        grid-template-columns: repeat(3, 1fr);
        padding: 1.5rem;
    }
    .s2-outreach-flip { width: 100px; height: 100px; }
}

/* Contact */
.s2-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.s2-contact-item {
    padding: 1.5rem; background: #fff; border-radius: 12px; border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.s2-contact-item h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text); }
.s2-contact-item a { color: var(--primary); text-decoration: none; }
.s2-form input, .s2-form textarea {
    width: 100%; padding: 0.75rem 1rem; margin-bottom: 1rem; background: #fff; border: 1px solid rgba(0,0,0,0.15);
    border-radius: 8px; color: var(--text); font-family: inherit; font-size: 1rem;
}
.s2-form input::placeholder, .s2-form textarea::placeholder { color: var(--text-muted); }
.s2-form textarea { min-height: 120px; resize: vertical; }
.s2-form .s2-btn { border: none; cursor: pointer; }

/* Gallery */
.s2-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.s2-gallery img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; }

.s2-card-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.s2-card-2col .s2-card-body { min-height: 0; }
@media (max-width: 768px) {
    .s2-card-2col { grid-template-columns: 1fr !important; align-items: start; }
    .s2-card-2col img { height: 200px !important; }
}

.s2-card-appeal-flow { overflow: hidden; }
.s2-card-appeal-img {
    float: left; width: 55%; max-width: 540px;
}
.s2-card-appeal-img img,
.s2-card-appeal-img video {
    display: block; width: 100%; height: 400px; object-fit: cover; border-radius: 8px;
}
.s2-card-appeal-flow .s2-card-body { overflow: hidden; }
.s2-card-appeal-desc { color: var(--text-muted); margin-bottom: 1rem; }
@media (max-width: 768px) {
    .s2-card-appeal-img { float: none; width: 100%; max-width: none; margin-right: 0; }
    .s2-card-appeal-img img,
    .s2-card-appeal-img video { height: 300px; }
}

/* Stats */
.s2-stats { padding: 4rem 1rem; background: #fff; }
.s2-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.s2-stat-card {
    position: relative; padding: 1rem 1.5rem; border-radius: 12px;
    background: var(--primary); color: #fff; text-align: center;
}
.s2-stat-icon {
    position: absolute; top: -8px; right: -8px;
    width: 48px; height: 48px; border-radius: 50%;
    background: #fff; color: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.s2-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 0rem; }
.s2-stat-label { font-size: 0.9rem; line-height: 1.4; opacity: 0.95; }
@media (max-width: 900px) { .s2-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .s2-stats-grid { grid-template-columns: 1fr; } }

/* Appeals */
.s2-appeals { padding: 1rem 1rem; background: #F8FAFC; }
.s2-appeals .s2-tagline, .s2-appeals .s2-title { margin-left: 0; margin-right: 0; }
.s2-appeals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.s2-appeals-link { margin-top: 1.5rem; }
.s2-appeals-link .s2-btn { display: inline-block; }

/* Marquee */
.s2-marquee { padding: 1rem 0; background: #fff; overflow: hidden; }
.s2-marquee-title {
    font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--primary);
    margin: 0 0 1.5rem; padding: 0 1rem;
}
.s2-marquee-inner { overflow: hidden; }
.s2-marquee-track {
    display: flex; gap: 3rem; animation: s2-marquee-scroll 40s linear infinite;
    width: max-content;
}
.s2-marquee-track:hover { animation-play-state: paused; }
.s2-marquee-item {
    flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    width: 140px; height: 90px; padding: 0.75rem;
    border: 1px solid rgba(0,0,0,0.12); border-radius: 8px;
    box-sizing: border-box;
}
.s2-marquee-item img {
    width: 100%; height: 100%; object-fit: contain;
    filter: grayscale(100%); opacity: 0.9;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.s2-marquee-item:hover img { filter: grayscale(0%); opacity: 1; }
@keyframes s2-marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Video */
.s2-video { padding: 4rem 1rem; background: #F8FAFC; }
.s2-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.s2-video-wrap {
    position: relative; width: 100%;
    aspect-ratio: 16 / 9; overflow: hidden; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.s2-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
@media (max-width: 768px) { .s2-video-grid { grid-template-columns: 1fr; } }

/* Footer */
.s2-footer {
    border-top: 1px solid rgba(255,255,255,0.2); font-size: 0.9rem; color: rgba(255,255,255,0.9); background: var(--primary);
}
.s2-footer a { color: #fff; text-decoration: none; }
.s2-footer a:hover { color: #fff; text-decoration: underline; opacity: 0.9; }
.s2-footer-top {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem;
    padding: 3rem 1rem 2rem;
}
.s2-footer-col h4 {
    font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; color: var(--secondary);
    margin-bottom: 1rem; font-weight: bolder;
}
.s2-footer-col p { margin: 0 0 0.5rem; color: rgba(255,255,255,0.9); }
.s2-footer-col ul { list-style: none; padding: 0; margin: 0; }
.s2-footer-col ul li { margin-bottom: 0.5rem; }
.s2-footer-col ul li a { display: inline-flex; align-items: center; gap: 0.5rem; }
.s2-footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.s2-footer-social a {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center; color: #fff;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.s2-footer-social a:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.15); }
.s2-footer-posts { list-style: none; padding: 0; margin: 0; }
.s2-footer-posts li { margin-bottom: 0.75rem; }
.s2-footer-posts li a {
    display: flex; align-items: flex-start; gap: 0.75rem; color: rgba(255,255,255,0.9);
}
.s2-footer-posts li a:hover { color: #fff; }
.s2-footer-posts img { width: 60px; height: 60px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.s2-footer-post-meta { font-size: 0.85rem; line-height: 1.4; }

/* Donate */
.s2-donate-alert {
    padding: 1rem 1.5rem; background: rgba(239, 68, 68, 0.15); border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 8px; color: #dc2626;
}
.s2-donate-bank {
    display: grid; gap: 0.75rem; max-width: 560px; background: #fff;
    border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; padding: 1.5rem 2rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.s2-donate-bank-row { display: grid; grid-template-columns: 140px 1fr; gap: 1rem; align-items: baseline; }
.s2-donate-bank-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.s2-donate-bank-value { font-weight: 600; color: var(--text); }
.s2-donate-bank-value--mono { font-family: 'SF Mono', 'Consolas', monospace; font-size: 0.95rem; word-break: break-all; }
@media (max-width: 480px) { .s2-donate-bank-row { grid-template-columns: 1fr; } }
.s2-donate-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem;
    min-width: 0;
}
.s2-donate-card {
    background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px;
    overflow: hidden; transition: border-color 0.2s, transform 0.2s; min-width: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.s2-donate-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.s2-donate-card-img { height: 140px; overflow: hidden; }
.s2-donate-card-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.95; }
.s2-donate-card-body { padding: 1.5rem; }
.s2-donate-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.s2-donate-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.s2-donate-card--custom { border-left: 4px solid var(--primary); }
.s2-donate-card--custom .s2-donate-card-body { padding: 2rem; }
.s2-donate-progress { margin-bottom: 1rem; }
.s2-donate-progress-bar {
    height: 8px; background: rgba(0,0,0,0.08); border-radius: 999px; overflow: hidden;
}
.s2-donate-progress-fill { height: 100%; background: var(--secondary); border-radius: 999px; transition: width 0.3s; }
.s2-donate-progress-labels {
    display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem;
}
.s2-donate-label { display: block; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.s2-donate-input {
    width: 100%; max-width: 200px; padding: 0.75rem 1rem; margin-bottom: 1rem;
    background: #fff; border: 1px solid rgba(0,0,0,0.15); border-radius: 8px;
    color: var(--text); font-size: 1rem; font-family: inherit;
}
.s2-donate-input:focus { outline: none; border-color: var(--primary); }
.s2-btn--sm { padding: 0.6rem 1.25rem; font-size: 0.9rem; }
.s2-donate-custom-only {
    max-width: 400px; padding: 2rem; background: #fff; border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.s2-donate-impact {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
}
.s2-donate-impact-item {
    text-align: center; padding: 1.5rem; background: #fff;
    border-radius: 12px; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.s2-donate-impact-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.s2-donate-impact-item p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Cart */
.s2-cart-empty {
    text-align: center; padding: 3rem 2rem; background: #fff;
    border: 1px solid rgba(0,0,0,0.08); border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.s2-cart-empty p { margin-bottom: 1.5rem; color: var(--text-muted); }
.s2-cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; align-items: start; }
.s2-cart-list { display: flex; flex-direction: column; gap: 1rem; }
.s2-cart-item {
    display: grid; grid-template-columns: 120px 1fr auto; gap: 1.5rem; align-items: center;
    padding: 1.5rem; background: #fff; border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px; border-left: 4px solid var(--primary);
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.s2-cart-item-img { width: 120px; height: 90px; overflow: hidden; border-radius: 8px; flex-shrink: 0; }
.s2-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.s2-cart-item-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.s2-cart-item-body .s2-donate-progress { margin-top: 0.5rem; }
.s2-cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.s2-cart-remove {
    background: transparent; border: none; color: #f87171; font-size: 0.85rem; cursor: pointer;
    text-decoration: underline; padding: 0;
}
.s2-cart-remove:hover { color: #fca5a5; }
.s2-cart-amount-wrap { display: flex; align-items: center; }
.s2-cart-amount-label {
    background: var(--primary); color: #fff; padding: 0.5rem 0.75rem; font-weight: 600;
    font-size: 0.85rem; border-radius: 8px 0 0 8px;
}
.s2-cart-amount {
    width: 100px; padding: 0.5rem 0.75rem; background: #fff; border: 1px solid rgba(0,0,0,0.15);
    border-radius: 0 8px 8px 0; color: var(--text); font-size: 1rem;
}
.s2-cart-amount:focus { outline: none; border-color: var(--primary); }
.s2-cart-summary {
    position: sticky; top: 80px; padding: 2rem; background: #fff;
    border: 1px solid rgba(0,0,0,0.08); border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.s2-cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 0.75rem; color: var(--text-muted); }
.s2-cart-summary-total { font-size: 1.25rem; color: var(--text); margin-top: 1rem; margin-bottom: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.08); }
.s2-cart-summary-total strong { color: var(--primary); }
.s2-cart-summary .s2-btn { width: 100%; text-align: center; }
@media (max-width: 900px) {
    .s2-cart-layout { grid-template-columns: 1fr; }
    .s2-cart-summary { position: static; }
}
@media (max-width: 768px) {
    .s2-cart-item { grid-template-columns: 1fr; }
    .s2-cart-item-img { width: 100%; height: 140px; }
    .s2-cart-item-actions { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
}

.s2-btn { background: var(--primary); color: #fff; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 700; display: inline-block; transition: box-shadow 0.2s, background 0.2s; }
.s2-btn:hover { box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.35); background: #0a7ab5; }
