:root {
    --bg-dark: #0a1f0a;
    --bg-light: #f5f9f5;
    --accent-light: #8BC34A;
    --accent-mid: #4CAF50;
    --accent-dark: #2E7D32;
    --text-light: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: #1a1a1a;
    overflow-x: hidden;
}

h1, h2, h3, .display-font {
    font-family: 'Space Grotesk', sans-serif;
}

.star-spin {
    animation: spin 4s linear infinite;
    display: inline-block;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

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

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 195, 74, 0.2);
}

.work-item {
    border-bottom: 1px solid rgba(46, 125, 50, 0.2);
    transition: all 0.3s ease;
}

.work-item:hover {
    background: rgba(139, 195, 74, 0.05);
    padding-left: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-shell {
    background: #eef5ee;
}

.hero-editorial {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-editorial-title {
    max-width: none;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(1.75rem, 3.3vw, 3.5rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    white-space: nowrap;
    font-weight: 800;
}

.hero-editorial-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    align-items: stretch;
}

.hero-editorial-image {
    min-height: 24rem;
    background: #dce9dc;
}

.hero-image-container {
    position: relative;
    overflow: hidden;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-light), transparent);
}

.video-placeholder {
    background: linear-gradient(135deg, #1b5e20 0%, #0a1f0a 100%);
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(139, 195, 74, 0.3);
    border-radius: 50%;
    border: 2px solid var(--accent-light);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid var(--accent-light);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-logo-image {
    display: block;
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.site-nav {
    padding-top: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(76, 175, 80, 0.12);
    box-shadow: 0 10px 26px rgba(20, 83, 45, 0.08);
}

.nav-inner {
    border: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0.55rem 0;
}

.nav-link-group {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.nav-link-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.75rem;
    border-radius: 9999px;
    color: rgba(20, 83, 45, 0.88);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.nav-link-pill:hover {
    background: rgba(76, 175, 80, 0.1);
    color: #14532d;
    transform: translateY(-1px);
}

.nav-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(76, 175, 80, 0.16);
    border-radius: 9999px;
    padding: 0.65rem 1.05rem;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(46, 125, 50, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.nav-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(46, 125, 50, 0.2);
}

.nav-mobile-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    border: 1px solid rgba(76, 175, 80, 0.16);
    background: rgba(76, 175, 80, 0.08);
    color: #14532d;
}

.nav-mobile-panel {
    margin-top: 0.75rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(76, 175, 80, 0.14);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 40px rgba(20, 83, 45, 0.08);
}

.mobile-nav-pill {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    color: rgba(20, 83, 45, 0.88);
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-pill:hover {
    background: rgba(76, 175, 80, 0.08);
    color: #14532d;
}

.mobile-nav-cta {
    margin-top: 0.25rem;
    border: 1px solid rgba(76, 175, 80, 0.16);
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    font-weight: 700;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(76, 175, 80, 0.18);
    border-radius: 1.25rem;
    padding: 1rem;
    box-shadow: 0 18px 35px rgba(27, 94, 32, 0.06);
    backdrop-filter: blur(10px);
}

.hero-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #14532d;
    margin-bottom: 0.4rem;
}

.hero-stat-label {
    color: rgba(20, 83, 45, 0.78);
    font-size: 0.92rem;
    line-height: 1.5;
}

.hero-collage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1rem;
    align-items: stretch;
    min-height: 620px;
}

.hero-collage-main,
.hero-collage-side {
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 24px 60px rgba(27, 94, 32, 0.18);
}

.hero-collage-main {
    min-height: 620px;
}

.hero-collage-top,
.hero-collage-bottom {
    height: calc(50% - 0.5rem);
}

.hero-floating-card {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(76, 175, 80, 0.16);
    border-radius: 1.5rem;
    box-shadow: 0 24px 45px rgba(20, 83, 45, 0.14);
    backdrop-filter: blur(12px);
}

.hero-floating-impact {
    left: -2rem;
    bottom: 2.25rem;
    max-width: 19rem;
    padding: 1.2rem 1.3rem;
}

.hero-floating-badge {
    right: 1rem;
    top: 2rem;
    max-width: 14rem;
    padding: 1rem 1.1rem;
}

.hero-floating-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4CAF50;
    margin-bottom: 0.45rem;
}

.hero-floating-title {
    color: #14532d;
    line-height: 1.55;
    font-weight: 600;
}

.hero-floating-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 700;
    color: #14532d;
}

.hero-floating-copy {
    margin-top: 0.45rem;
    color: rgba(20, 83, 45, 0.78);
    line-height: 1.45;
}

.section-kicker {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4CAF50;
}

.story-shell {
    background:
        radial-gradient(circle at left top, rgba(139, 195, 74, 0.16), transparent 28%),
        linear-gradient(180deg, #f5faf2 0%, #ffffff 100%);
}

.story-intro,
.editorial-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2rem;
    align-items: end;
}

.about-split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 1rem;
    align-items: stretch;
}

.about-copy-card,
.about-image-card {
    border-radius: 1.8rem;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.14);
    box-shadow: 0 20px 48px rgba(20, 83, 45, 0.08);
}

.about-copy-card {
    padding: 1.7rem;
    background: rgba(255, 255, 255, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-copy-card .story-headline {
    font-size: clamp(2.3rem, 4.2vw, 4.2rem);
    margin-top: 0.6rem;
}

.about-copy-card .story-intro-copy {
    margin-top: 1rem;
    max-width: 34rem;
}

.about-image-card {
    min-height: 22rem;
    background: #dce9dc;
}

.story-headline,
.editorial-title,
.contact-editorial-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: #0f3d21;
    font-weight: 700;
    margin-top: 0.8rem;
}

.story-intro-copy,
.editorial-copy,
.contact-editorial-text {
    color: rgba(20, 83, 45, 0.76);
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-ribbon-image,
.editorial-feature-image,
.editorial-support-image,
.work-story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.story-panel {
    border-radius: 2rem;
    padding: 1.6rem;
    border: 1px solid rgba(76, 175, 80, 0.14);
    box-shadow: 0 20px 45px rgba(20, 83, 45, 0.08);
}

.story-panel-light {
    background: rgba(255, 255, 255, 0.94);
}

.story-panel-dark {
    background: linear-gradient(160deg, #1f6c31 0%, #14532d 58%, #0f3d21 100%);
}

.story-panel-kicker {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4CAF50;
}

.story-panel-dark .story-panel-kicker {
    color: rgba(255, 255, 255, 0.72);
}

.story-panel-title,
.editorial-feature-title,
.editorial-support-title,
.work-story-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.7rem, 2.6vw, 2.7rem);
    line-height: 1.05;
    color: #14532d;
    font-weight: 700;
    margin-top: 0.75rem;
}

.story-panel-copy,
.work-story-copy {
    margin-top: 1rem;
    color: rgba(20, 83, 45, 0.76);
    line-height: 1.75;
}

.story-panel-dark .story-panel-title,
.story-panel-dark .story-panel-copy,
.editorial-action-card-dark .editorial-support-title,
.editorial-action-card-dark .editorial-copy,
.editorial-action-card-dark .story-panel-kicker {
    color: white;
}

.story-panel-dark .story-panel-copy,
.editorial-action-card-dark .editorial-copy {
    color: rgba(255, 255, 255, 0.82);
}

.story-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.story-list-item {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: #f5faf3;
    border: 1px solid rgba(76, 175, 80, 0.1);
    color: rgba(20, 83, 45, 0.85);
    line-height: 1.6;
}

.story-quote {
    margin-top: 1.2rem;
    padding: 1rem 1.1rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
}

.editorial-shell {
    background:
        radial-gradient(circle at right top, rgba(139, 195, 74, 0.14), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f5faf2 100%);
}

.editorial-copy {
    margin-top: 0.9rem;
}

.editorial-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1rem;
    margin-top: 2.3rem;
    align-items: stretch;
}

.editorial-feature-media,
.editorial-feature-body,
.editorial-support-card,
.editorial-action-card,
.work-story-card {
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.14);
    box-shadow: 0 20px 48px rgba(20, 83, 45, 0.08);
}

.editorial-feature-media {
    min-height: 34rem;
    background: #dce9dc;
}

.editorial-feature-body,
.editorial-action-card,
.work-story-card {
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.94);
}

.editorial-feature-points {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.editorial-feature-point {
    padding: 0.9rem 1rem;
    border-radius: 9999px;
    background: rgba(139, 195, 74, 0.12);
    color: #14532d;
    font-weight: 600;
}

.editorial-button,
.editorial-text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.35rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.editorial-button {
    width: fit-content;
    border: 0;
    padding: 0.95rem 1.35rem;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    box-shadow: 0 18px 32px rgba(46, 125, 50, 0.22);
    cursor: pointer;
}

.editorial-button-light {
    background: white;
    color: #14532d;
    box-shadow: none;
}

.editorial-text-link {
    width: fit-content;
    color: #14532d;
}

.editorial-text-link-light {
    color: white;
}

.editorial-button:hover,
.editorial-text-link:hover {
    transform: translateY(-1px);
}

.editorial-support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) repeat(2, minmax(0, 0.95fr));
    gap: 1rem;
    margin-top: 1rem;
}

.editorial-action-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.editorial-support-card {
    background: rgba(255, 255, 255, 0.92);
}

.editorial-support-image {
    min-height: 18rem;
}

.editorial-support-copy {
    padding: 1.3rem;
}

.editorial-action-card-light {
    background: #f7fbf4;
}

.editorial-action-card-dark {
    background: linear-gradient(160deg, #1f6c31 0%, #14532d 58%, #0f3d21 100%);
}

.work-story-shell {
    background:
        radial-gradient(circle at left center, rgba(46, 125, 50, 0.08), transparent 22%),
        linear-gradient(180deg, #f5faf2 0%, #ffffff 100%);
}

.work-lead {
    align-items: start;
}

.work-story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.3rem;
}

.work-story-card {
    min-height: 18rem;
}

.work-story-card-image {
    padding: 0;
    background: #dce9dc;
}

.work-story-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #4CAF50;
    letter-spacing: 0.1em;
}

.contact-editorial-shell {
    background:
        radial-gradient(circle at right bottom, rgba(139, 195, 74, 0.14), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f5faf2 100%);
    padding-bottom: 0 !important;
}

.contact-section-header {
    max-width: 46rem;
    margin: 0 auto;
    text-align: center;
}

.contact-editorial-shell .section-kicker {
    margin-bottom: 0.45rem;
}

.contact-editorial-title {
    font-size: clamp(2rem, 3.8vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    max-width: 18ch;
    margin: 0 auto;
}

.contact-form-card-compact {
    max-width: 48rem;
    margin: 2rem auto 0;
}

.contact-method-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #4CAF50;
}

.contact-method-value {
    margin-top: 0.45rem;
    color: #14532d;
    font-weight: 600;
    line-height: 1.5;
}

.contact-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.5rem;
}

.contact-footer-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    width: 100vw;
    margin: 1.5rem calc(50% - 50vw) 0;
    padding: 2rem 2.25rem;
    border-radius: 0;
    background: linear-gradient(160deg, #1f6c31 0%, #14532d 58%, #0f3d21 100%);
    box-shadow: 0 22px 48px rgba(20, 83, 45, 0.16);
}

.contact-footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-footer-heading {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.contact-footer-link {
    color: white;
    font-weight: 600;
    line-height: 1.5;
    transition: opacity 0.2s ease;
}

.contact-footer-link:hover {
    opacity: 0.78;
}

.contact-footer-detail + .contact-footer-detail {
    margin-top: 0.15rem;
}

.contact-footer-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.contact-footer-value {
    margin-top: 0.3rem;
    color: white;
    font-weight: 600;
    line-height: 1.55;
}

.contact-social-row {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: white;
    font-weight: 600;
    line-height: 1.5;
    transition: opacity 0.2s ease;
}

.contact-social-link:hover {
    opacity: 0.78;
}

.about-visual {
    position: relative;
    min-height: 460px;
}

.about-visual-main {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 28px 60px rgba(27, 94, 32, 0.14);
}

.about-visual-panel {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    padding: 1.4rem 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(76, 175, 80, 0.18);
    box-shadow: 0 20px 45px rgba(20, 83, 45, 0.12);
    backdrop-filter: blur(10px);
}

.about-panel-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4CAF50;
    margin-bottom: 0.45rem;
}

.about-panel-copy {
    color: #14532d;
    font-weight: 600;
    line-height: 1.55;
}

.vision-shell {
    background:
        radial-gradient(circle at left top, rgba(139, 195, 74, 0.14), transparent 28%),
        linear-gradient(180deg, #eef8ea 0%, #f8fcf6 100%);
}

.community-outlet-shell {
    background:
        radial-gradient(circle at top left, rgba(139, 195, 74, 0.12), transparent 24%),
        radial-gradient(circle at bottom right, rgba(46, 125, 50, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f3f9f1 100%);
}

.community-outlet-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.community-outlet-intro {
    max-width: 24rem;
    color: rgba(20, 83, 45, 0.72);
    font-size: 1.05rem;
    line-height: 1.75;
}

.community-outlet-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 1.5rem;
    align-items: start;
}

.outlet-feature-card,
.outlet-action-card,
.outlet-note-card {
    border-radius: 2rem;
    border: 1px solid rgba(76, 175, 80, 0.12);
    box-shadow: 0 22px 50px rgba(20, 83, 45, 0.08);
}

.outlet-feature-card {
    padding: 1.35rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 251, 241, 0.95) 100%);
}

.outlet-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.outlet-badge,
.outlet-card-kicker,
.outlet-note-label,
.outlet-feature-label,
.outlet-gallery-kicker {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.outlet-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1rem;
    border-radius: 9999px;
    color: #14532d;
    background: rgba(139, 195, 74, 0.14);
}

.outlet-inline-button,
.outlet-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 9999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.outlet-inline-button {
    padding: 0.8rem 1.1rem;
    background: rgba(20, 83, 45, 0.06);
    color: #14532d;
}

.outlet-primary-button {
    width: fit-content;
    padding: 0.95rem 1.3rem;
    color: white;
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    box-shadow: 0 18px 36px rgba(46, 125, 50, 0.22);
}

.outlet-inline-button:hover,
.outlet-primary-button:hover,
.outlet-text-link:hover {
    transform: translateY(-1px);
}

.outlet-feature-body {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.35rem;
    margin-bottom: 1.5rem;
}

.outlet-feature-label,
.outlet-card-kicker,
.outlet-note-label,
.outlet-gallery-kicker {
    color: #4CAF50;
}

.outlet-feature-title,
.outlet-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.08;
    color: #14532d;
}

.outlet-feature-title {
    max-width: 34rem;
    margin-top: 0.7rem;
    font-size: clamp(2rem, 3vw, 3rem);
}

.outlet-stat-row {
    display: grid;
    gap: 0.8rem;
    min-width: 12rem;
}

.outlet-stat-chip {
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(76, 175, 80, 0.12);
}

.outlet-stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 700;
    color: #14532d;
}

.outlet-stat-copy {
    display: block;
    margin-top: 0.45rem;
    color: rgba(20, 83, 45, 0.74);
    line-height: 1.5;
}

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

.outlet-gallery-card {
    position: relative;
    overflow: hidden;
    min-height: 18rem;
    border-radius: 1.65rem;
    background: #dce9dc;
}

.outlet-gallery-card-wide {
    grid-column: 1 / -1;
    min-height: 22rem;
}

.outlet-gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 83, 45, 0.02) 0%, rgba(10, 31, 10, 0.55) 100%);
}

.outlet-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.outlet-gallery-copy {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 1;
}

.outlet-gallery-title {
    margin-top: 0.45rem;
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
}

.outlet-side-stack {
    display: grid;
    gap: 1rem;
}

.outlet-action-card,
.outlet-note-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
}

.outlet-action-card-donate {
    background: linear-gradient(160deg, #1f6c31 0%, #14532d 60%, #0f3d21 100%);
}

.outlet-action-card-donate .outlet-card-kicker,
.outlet-action-card-donate .outlet-card-title,
.outlet-action-card-donate .outlet-card-copy {
    color: white;
}

.outlet-action-card-volunteer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 249, 241, 0.9) 100%);
}

.outlet-card-title {
    margin-top: 0.65rem;
    font-size: 1.9rem;
}

.outlet-card-copy,
.outlet-note-copy {
    margin-top: 0.9rem;
    color: rgba(20, 83, 45, 0.76);
    line-height: 1.7;
}

.outlet-action-card-donate .outlet-card-copy {
    color: rgba(255, 255, 255, 0.8);
}

.outlet-primary-button {
    margin-top: 1.2rem;
}

.outlet-text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1.2rem;
    color: #2E7D32;
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.outlet-note-copy {
    margin-top: 0.65rem;
}

.compact-purpose-stack {
    display: grid;
    gap: 1rem;
}

.purpose-card,
.vision-feature-card,
.mission-card {
    border-radius: 2rem;
    padding: 1.5rem;
}

.purpose-card {
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.purpose-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.purpose-card-vision,
.vision-feature-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(76, 175, 80, 0.16);
    box-shadow: 0 24px 50px rgba(20, 83, 45, 0.08);
}

.vision-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.vision-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1rem;
}

.vision-icon-light {
    background: rgba(139, 195, 74, 0.18);
    color: #2E7D32;
}

.vision-icon-dark {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.vision-point {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(76, 175, 80, 0.08);
    color: #14532d;
    font-weight: 600;
}

.purpose-card-mission,
.mission-card-primary {
    background: linear-gradient(160deg, #1f6c31 0%, #14532d 60%, #0f3d21 100%);
    box-shadow: 0 30px 60px rgba(20, 83, 45, 0.2);
}

.mission-card-secondary {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(76, 175, 80, 0.14);
    box-shadow: 0 20px 40px rgba(20, 83, 45, 0.06);
}

.our-work-shell {
    background:
        radial-gradient(circle at top right, rgba(139, 195, 74, 0.14), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7fbf5 100%);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 64rem;
    margin: 0 auto;
}

.work-card {
    display: flex;
    flex-direction: column;
    padding: 1.25rem;
    border: 1px solid rgba(76, 175, 80, 0.14);
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(20, 83, 45, 0.06);
}

.work-item-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 9999px;
    background: rgba(139, 195, 74, 0.14);
    color: #2E7D32;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.work-item-subtitle {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4CAF50;
    margin-bottom: 0.9rem;
}

.work-point-list {
    display: grid;
    gap: 0.75rem;
}

.work-point {
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: #f5faf3;
    color: rgba(20, 83, 45, 0.82);
    border: 1px solid rgba(76, 175, 80, 0.08);
}

.work-item-aside {
    padding: 1.15rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, rgba(139, 195, 74, 0.12) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid rgba(76, 175, 80, 0.12);
}

.work-item-body {
    padding: 0;
}

.work-item-body-static {
    margin-top: auto;
}

.work-item-link {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    color: #2E7D32;
    font-weight: 700;
    transition: color 0.2s ease;
}

.work-item-link:hover {
    color: #14532d;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(10, 31, 10, 0.5);
    backdrop-filter: blur(8px);
}

.modal-panel {
    position: relative;
    width: min(100%, 720px);
    max-height: min(88vh, 860px);
    overflow-y: auto;
    border-radius: 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f5fbf3 100%);
    border: 1px solid rgba(76, 175, 80, 0.16);
    box-shadow: 0 30px 70px rgba(20, 83, 45, 0.2);
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 9999px;
    background: rgba(20, 83, 45, 0.08);
    color: #14532d;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.modal-kicker {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4CAF50;
}

.modal-title {
    margin-top: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.05;
    color: #14532d;
}

.modal-copy {
    margin-top: 1rem;
    color: rgba(20, 83, 45, 0.76);
    font-size: 1.05rem;
    line-height: 1.65;
}

.calendar-placeholder {
    margin-top: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(76, 175, 80, 0.14);
    background: white;
    padding: 1.25rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.calendar-placeholder-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #14532d;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
    color: rgba(20, 83, 45, 0.82);
    text-align: center;
    font-size: 0.95rem;
}

.calendar-grid > span:nth-child(-n+7) {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4CAF50;
}

.calendar-cell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    border-radius: 1rem;
    background: #f6fbf4;
    border: 1px solid rgba(76, 175, 80, 0.08);
}

.calendar-cell.is-muted {
    opacity: 0.55;
}

.calendar-cell.is-active {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    border-color: transparent;
}

.donate-callout {
    margin-top: 1.25rem;
    padding: 1.4rem 1.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.12) 0%, rgba(139, 195, 74, 0.08) 100%);
    border: 1px solid rgba(76, 175, 80, 0.18);
}

.donate-email {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #14532d;
}

.donate-note {
    margin-top: 0.35rem;
    color: rgba(20, 83, 45, 0.72);
    font-weight: 600;
}

.contact-shell {
    background:
        radial-gradient(circle at left center, rgba(139, 195, 74, 0.14), transparent 24%),
        linear-gradient(180deg, #f8fcf6 0%, #ffffff 100%);
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.25rem;
    border-radius: 2rem;
    padding: 1.25rem;
    background: linear-gradient(160deg, #1f6c31 0%, #14532d 60%, #0f3d21 100%);
    box-shadow: 0 30px 60px rgba(20, 83, 45, 0.18);
    max-width: 27rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-kicker {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.contact-info-list {
    display: grid;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.contact-info-value {
    margin-top: 0.3rem;
    color: white;
    font-weight: 600;
    line-height: 1.5;
}

.contact-highlight-card {
    padding: 0.9rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-highlight-title {
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.contact-highlight-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-highlight-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-input {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid rgba(76, 175, 80, 0.18);
    background: rgba(255, 255, 255, 0.92);
    padding: 0.9rem 1rem;
    color: #14532d;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-input:focus {
    outline: none;
    border-color: rgba(76, 175, 80, 0.9);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.12);
    background: white;
}

.contact-textarea {
    resize: none;
}

@media (max-width: 1024px) {
    .hero-shell {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .hero-editorial-title {
        font-size: clamp(1.6rem, 3vw, 2.6rem);
    }

    .hero-editorial-image {
        min-height: 16rem;
    }

    .about-visual,
    .about-visual-main {
        min-height: 380px;
    }

    .story-intro,
    .editorial-lead,
    .editorial-feature {
        grid-template-columns: 1fr;
    }

    .about-split-grid {
        grid-template-columns: 1fr;
    }

    .story-panel-grid,
    .editorial-support-grid,
    .editorial-action-row,
    .work-story-grid {
        grid-template-columns: 1fr 1fr;
    }

    .community-outlet-header,
    .outlet-feature-body {
        flex-direction: column;
        align-items: start;
    }

    .community-outlet-grid {
        grid-template-columns: 1fr;
    }

    .community-outlet-intro {
        max-width: 40rem;
    }

    .outlet-side-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .outlet-note-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero-editorial {
        gap: 1rem;
    }

    .hero-editorial-strip {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 26rem;
        margin: 0 auto;
    }

    .hero-editorial-image {
        min-height: 10rem;
        border-radius: 1rem;
        overflow: hidden;
    }

    .hero-editorial-title {
        font-size: clamp(1.35rem, 6vw, 2rem);
        line-height: 1.02;
        white-space: normal;
        max-width: 18ch;
    }

    .hero-shell {
        padding-top: 6.5rem;
        padding-bottom: 2.5rem;
    }

    .about-visual,
    .about-visual-main {
        min-height: 340px;
    }

    .story-headline,
    .editorial-title,
    .contact-editorial-title {
        font-size: clamp(2.2rem, 11vw, 3.6rem);
        line-height: 0.98;
    }

    .story-panel-grid,
    .editorial-support-grid,
    .editorial-action-row,
    .work-story-grid {
        grid-template-columns: 1fr;
    }

    .about-image-card,
    .editorial-feature-media,
    .work-story-card {
        min-height: 14rem;
    }

    .story-panel,
    .about-copy-card,
    .editorial-feature-body,
    .editorial-action-card,
    .work-story-card {
        border-radius: 1.5rem;
        padding: 1.25rem;
    }

    .editorial-support-card,
    .contact-form-card {
        border-radius: 1.5rem;
    }

    .editorial-feature-point {
        border-radius: 1rem;
    }

    .contact-form-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-footer-info {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .contact-footer-column {
        gap: 0.6rem;
    }

    .about-visual-panel {
        position: static;
        margin-top: 1rem;
    }

    .vision-feature-card,
    .mission-card {
        padding: 1.5rem;
    }

    .modal-panel {
        padding: 1.5rem;
    }

    .calendar-placeholder-header {
        flex-direction: column;
    }

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

    .community-outlet-header {
        margin-bottom: 2rem;
    }

    .outlet-feature-card,
    .outlet-action-card,
    .outlet-note-card {
        border-radius: 1.5rem;
    }

    .outlet-gallery {
        grid-template-columns: 1fr;
    }

    .outlet-gallery-card,
    .outlet-gallery-card-wide {
        min-height: 16rem;
    }

    .outlet-feature-title {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .outlet-card-title {
        font-size: 1.55rem;
    }

    .outlet-side-stack {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    #contact .grid {
        display: flex;
        flex-direction: column;
    }

    #contact .contact-form-card {
        order: 1;
    }

    #contact .contact-info-card {
        order: 2;
    }

}


/* Contact Us section */
.contact-form-card {
    background: linear-gradient(160deg, #ffffff 0%, #f3faf2 100%);
    border: 1px solid rgba(76, 175, 80, 0.2);
    box-shadow: 0 18px 40px rgba(27, 94, 32, 0.08);
    max-width: 38rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
