/* ============================================
   HOME PAGE — Unique Styles
   ============================================ */

/* Hero */
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(165deg, #1A3A25 0%, #2D5A3D 35%, #3A2A1E 70%, #2C2520 100%);
}

.home-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(200, 169, 110, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(45, 90, 61, 0.15) 0%, transparent 50%);
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.home-hero h1 {
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.2rem !important;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.hero-scroll-indicator span {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
    100% { opacity: 1; transform: scaleY(1); }
}

/* Impact Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
}

.stat-card .stat-number {
    font-size: 2.8rem;
    margin-bottom: 8px;
}

.stat-bar {
    width: 60%;
    height: 4px;
    background: var(--neutral-grey);
    border-radius: 2px;
    margin: 16px auto 0;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-green), var(--accent-gold));
    border-radius: 2px;
    transition: width 1.5s ease;
}

/* Focus Areas */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.focus-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-green), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.focus-card:hover::before {
    transform: scaleX(1);
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.focus-icon {
    width: 72px;
    height: 72px;
    background: rgba(45, 90, 61, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-green);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.focus-card:hover .focus-icon {
    background: var(--secondary-green);
    color: white;
}

.focus-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.focus-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.focus-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.focus-link:hover {
    color: var(--accent-gold);
    gap: 10px;
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-strong);
}

.story-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    background: var(--neutral-light);
}

.story-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-gold), transparent);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: -1;
}

.story-image-block {
    position: relative;
}

.story-content-block h2 {
    margin-bottom: 24px;
}

.story-content-block p {
    margin-bottom: 16px;
}

.story-features {
    margin-top: 32px;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.feature-icon {
    color: var(--accent-gold);
    font-size: 1rem;
}

/* Week of Honour */
.horizontal-scroll {
    overflow-x: auto;
    cursor: grab;
    padding: 0 2rem 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.horizontal-scroll::-webkit-scrollbar { display: none; }

.scroll-track {
    display: flex;
    gap: 24px;
    padding: 10px 0;
    min-width: max-content;
}

.honour-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 36px 32px;
    min-width: 300px;
    max-width: 320px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.honour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.honour-day {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--secondary-green), var(--secondary-green-light));
    color: white;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.honour-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.honour-card p {
    font-size: 0.92rem;
    color: var(--text-light);
}

/* Founder Quote */
.founder-quote {
    background: linear-gradient(135deg, var(--secondary-green) 0%, #1A3A25 100%);
}

.quote-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    line-height: 0.5;
    color: rgba(200, 169, 110, 0.3);
    margin-bottom: 20px;
}

.quote-block blockquote p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 36px;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.quote-author-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
}

.quote-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-author h4 {
    color: white;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
}

.quote-author p {
    color: var(--accent-gold) !important;
    font-size: 0.85rem !important;
}

/* Featured Initiatives */
.initiatives-showcase {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;
}

.initiative-large {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 520px;
}

.initiative-large .initiative-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.initiative-large .initiative-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--neutral-light);
}

.initiative-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(26, 22, 18, 0.95) 0%, transparent 100%);
    z-index: 2;
}

.initiative-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-gold);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.initiative-overlay h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.initiative-overlay p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.initiative-side {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.initiative-small {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-soft);
    display: flex;
    transition: var(--transition-smooth);
}

.initiative-small:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.initiative-small img {
    width: 180px;
    height: 100%;
    min-height: 180px;
    object-fit: contain;
    background: var(--neutral-light);
    flex-shrink: 0;
}

.initiative-small-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.initiative-small-content h4 {
    margin-bottom: 8px;
}

.initiative-small-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* CTA Section */
.home-cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #2D5A3D 0%, #1A3A25 50%, #2C2520 100%);
    overflow: hidden;
}

.home-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(200, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(200, 169, 110, 0.06) 0%, transparent 40%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: white;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto 36px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .focus-grid { grid-template-columns: repeat(2, 1fr); }
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .initiatives-showcase { grid-template-columns: 1fr; }
    .initiative-large { min-height: 400px; }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-card { padding: 28px 16px; }
    .focus-grid { grid-template-columns: 1fr; }
    .initiative-small { flex-direction: column; }
    .initiative-small img { width: 100%; height: 200px; }
    .home-hero-content { padding: 140px 0 100px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .cta-actions { flex-direction: column; align-items: center; }
}
