* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f3f1ec;
    color: #322d28;
    font-size: 1.14rem;
    line-height: 1.82;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main-content {
    flex-grow: 1;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(248, 246, 242, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(60, 60, 60, 0.06);
    z-index: 100;
}

.logo {
    min-width: 260px;
    padding-left: 14px;
}

.logo a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-brand-icon {
    width: 78px;
    height: auto;
    object-fit: contain;
    display: block;
}

.nav-brand-text {
    font-size: 0.78rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.1px;
    white-space: nowrap;
}

.brand-blue {
    color: #0f6e9f;
}

.brand-green {
    color: #2f6b45;
    margin-left: 4px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav ul li a {
    color: #2f2a25;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.15px;
    position: relative;
    padding-bottom: 5px;
    font-size: 1.08rem;
}

.main-nav ul li a:hover {
    color: #2f6b45;
}

.main-nav ul li a.active {
    color: #2f6b45;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6bb343;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #3a342e;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 25px;
    height: 2px;
    background-color: #3a342e;
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.about-section {
    background: linear-gradient(180deg, #f7f4ef 0%, #f3f1ec 52%, #eeebe4 100%);
    padding: 162px 20px 90px;
}

.donate-wrap {
    max-width: 1220px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(3.35rem, 5.3vw, 4.25rem);
    line-height: 1.02;
    font-weight: 800;
    color: #2f6b45;
    margin-bottom: 48px;
    text-align: left;
    max-width: 980px;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.donate-row {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 64px;
    align-items: start;
}

.donate-row--secondary {
    align-items: center;
    margin-top: -10px;
}

.photo-main,
.photo-small {
    overflow: hidden;
}

.photo-main img,
.photo-small img {
    width: 100%;
    display: block;
    object-fit: cover;
    box-shadow: 0 16px 36px rgba(87, 62, 34, 0.10);
    transition: transform 0.3s ease;
}

.photo-main img {
    height: 320px;
    border-radius: 12px;
}

.photo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.photo-small img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
}

.photo-small-produce {
    object-position: center;
}

.photo-small-person {
    object-position: 62% center;
}

.photo-main:hover img,
.photo-small:hover img {
    transform: scale(1.02);
}

.about-text {
    padding-top: 8px;
    max-width: 700px;
}

.wp-content-well {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.about-text h3 {
    font-size: clamp(2.05rem, 3.1vw, 2.65rem);
    line-height: 1.16;
    font-weight: 800;
    color: #2f6b45;
    margin-bottom: 22px;
    padding: 8px 0 8px 12px;
    border-left: 4px solid rgba(47, 107, 69, 0.42);
    background: rgba(47, 107, 69, 0.05);
    border-radius: 6px;
}

.about-text h3 a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
    transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.about-text h3 a:hover {
    color: #25563a;
    opacity: 0.9;
    transform: translateY(-1px);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.84;
    font-weight: 500;
    color: #3b3530;
    margin-bottom: 18px;
}

.contact-note {
    margin-top: 4px;
    padding-top: 30px;
    border-top: 1px solid rgba(120, 100, 80, 0.16);
    max-width: 900px;
}

.contact-note p {
    font-size: 1.06rem;
    line-height: 1.8;
    font-weight: 500;
    color: #3b3530;
    margin-bottom: 0;
}

.donate-steps {
    margin-top: 12px;
    padding: 24px 0 10px;
    position: relative;
}

.donate-steps h3 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.2;
    font-weight: 800;
    color: #2f6b45;
    margin-bottom: 22px;
    letter-spacing: 0.2px;
}

.donate-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.donate-step {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 4px 8px 6px 0;
}

.donate-step span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    color: #ffffff;
    background: #2f6b45;
    border-radius: 50%;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

.donate-step span::after {
    content: '';
    position: absolute;
    left: 0.33rem;
    bottom: -0.34rem;
    width: 0;
    height: 0;
    border-left: 0.32rem solid transparent;
    border-right: 0.32rem solid transparent;
    border-top: 0.44rem solid #2f6b45;
    transform: rotate(18deg);
}

.donate-step h4 {
    font-size: 1.14rem;
    line-height: 1.35;
    color: #302b26;
    font-weight: 700;
    margin: 0 0 8px;
}

.donate-step p {
    font-size: 0.97rem;
    line-height: 1.62;
    color: #3d3732;
    margin: 0;
}

.donation-impact {
    margin-top: 22px;
    padding: 28px;
    border: 1px solid rgba(47, 107, 69, 0.16);
    border-radius: 14px;
    background: #f7f3ee;
}

.donation-impact h3 {
    font-size: clamp(1.8rem, 2.8vw, 2.3rem);
    line-height: 1.2;
    font-weight: 800;
    color: #2f6b45;
    margin-bottom: 18px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.impact-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid rgba(60, 40, 20, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.impact-logo-wrap {
    min-height: 72px;
    display: flex;
    align-items: center;
}

.impact-logo-image {
    max-width: 220px;
    max-height: 68px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.impact-logo-image--rethink {
    max-width: 185px;
}

.impact-body p {
    font-size: 1.02rem;
    line-height: 1.72;
    font-weight: 500;
    color: #3b3530;
    margin-bottom: 14px;
}

.impact-body a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2f6b45;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.94rem;
    line-height: 1;
    border-radius: 8px;
    padding: 12px 16px;
    transition: background 0.25s ease;
}

.impact-body a:hover {
    background: #25563a;
}

.contact-note a {
    color: #2f6b45;
    text-decoration: underline;
    text-decoration-thickness: 1.6px;
    text-underline-offset: 4px;
}

.contact-note a:hover {
    color: #25563a;
}

.section-divider {
    max-width: 980px;
    margin: 56px auto 0;
    border-top: 1px solid rgba(120, 100, 80, 0.12);
}

.hidden-phone {
    margin-top: 36px;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px 26px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.hidden-phone p {
    width: 100%;
    color: #5f564e;
    font-size: 0.82em;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}

.hidden-phone a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hidden-phone img {
    max-width: 78px;
    max-height: 46px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.25s ease;
    margin: 0;
}

.hidden-phone img:hover {
    transform: translateY(-1px);
}

.hidden-phone a:last-child img {
    max-width: 110px;
    max-height: 50px;
}

.main-footer {
    text-align: center;
    padding: 34px 20px;
    background-color: #e2dbd2;
    color: #4b443d;
}

.main-footer p {
    font-size: 15px;
    margin: 0;
}

@media (max-width: 1100px) {
    .donate-row {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .donate-row--secondary {
        margin-top: 0;
    }

    .donate-row--secondary .about-text {
        order: 2;
    }

    .donate-row--secondary .donate-media {
        order: 1;
    }

    .section-title {
        font-size: 3.1rem;
        max-width: 100%;
    }

    .about-text {
        max-width: 100%;
        padding-top: 0;
    }

    .donate-steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 18px 20px;
    }

    .main-nav ul {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav ul li a {
        font-size: 0.9rem;
    }

    .about-section {
        padding: 138px 16px 70px;
    }

    .nav-brand-icon {
        width: 54px;
        height: auto;
    }

    .logo {
        min-width: 210px;
    }

    .nav-brand-text {
        font-size: 0.68rem;
    }

    .section-title {
        font-size: 2.45rem;
        margin-bottom: 34px;
    }

    .photo-main img {
        height: 270px;
    }

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

    .photo-small img {
        aspect-ratio: 16 / 10;
    }

    .about-text h3 {
        font-size: 2rem;
    }

    .about-text p,
    .contact-note p {
        font-size: 1.05rem;
    }

    .hidden-phone {
        gap: 14px 18px;
    }

    .donation-impact {
        padding: 22px 16px;
    }

    .impact-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px;
    }

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

    .impact-logo-image {
        max-width: 190px;
        max-height: 60px;
    }

    .hidden-phone img {
        max-width: 68px;
        max-height: 40px;
    }
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    background: #ffffff;
    color: #1f1f1f;
    border: 2px solid #d87416;
    font-weight: 700;
}
