    /* ========== ABOUT HERO ========== */
    .page-hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .page-hero-video {
        position: relative;
        overflow: hidden;
        max-height: 40rem;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-lg);
    }

    .page-hero-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Hero Stats */
    .hero-stats {
        display: flex;
        gap: 2.5rem;
        margin-top: 0.5rem;
    }

    .hero-stat {
        text-align: left;
    }

    .hero-stat-number {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 800;
        color: var(--brand-500);
        line-height: 1;
    }

    .hero-stat-label {
        font-size: 0.875rem;
        color: var(--green-200);
        font-weight: 500;
        margin-top: 0.25rem;
    }

    /* Hero CTAs */
    .page-hero .hero-ctas {
        display: flex;
        gap: 1rem;
        margin-top: 2rem;
    }

    /* ========== STORY SECTION ========== */
    .story {
        padding: 6rem 2rem;
        background: var(--cream-50);
    }

    .story-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
        align-items: center;
    }

    .story-image {
        position: relative;
    }

    .story-image img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-lg);
    }

    .story-image::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        right: 20px;
        bottom: 20px;
        border: 3px solid var(--brand-400);
        border-radius: var(--radius-sm);
        z-index: -1;
    }

    .story-subtitle {
        font-family: var(--font-heading);
        font-size: 0.9375rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--brand-600);
        margin-bottom: 0.75rem;
    }

    .story h2 {
        color: var(--green-900);
        margin-bottom: 2rem;
    }

    .story p {
        font-size: 1.125rem;
        color: var(--text-medium);
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .story-highlight {
        background: linear-gradient(135deg, var(--cream-100) 0%, var(--cream-50) 100%);
        padding: 1.5rem;
        border-radius: var(--radius-sm);
        border-left: 4px solid var(--brand-500);
        margin-top: 2rem;
    }

    .story-highlight p {
        font-style: italic;
        color: var(--green-800);
        margin: 0;
    }

    /* ========== FOUNDER SECTION ========== */
    .founder {
        padding: 5rem 2rem;
        background: var(--cream-100);
    }

    .founder-container {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 3.5rem;
        align-items: center;
    }

    .founder-photo img,
    .founder-photo picture {
        width: 100%;
        max-width: 380px;
        height: 100%;
        max-height: 480px;
        object-fit: cover;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-lg);
    }

    .founder-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-family: var(--font-heading);
        font-size: 0.875rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--brand-500);
        margin-bottom: 0.75rem;
    }

    .founder-eyebrow i {
        width: 16px;
        height: 16px;
    }

    .founder-bio h2 {
        color: var(--green-900);
        margin-bottom: 1.25rem;
    }

    .founder-bio p {
        font-size: 1.0625rem;
        color: var(--text-medium);
        line-height: 1.75;
    }

    @media (max-width: 768px) {
        .founder {
            padding: 4rem 1.5rem;
        }

        .founder-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .founder-photo {
            text-align: center;
        }

        .founder-photo img,
        .founder-photo picture {
            max-width: 320px;
            margin: 0 auto;
        }
    }

    /* ========== GALLERY SECTION ========== */
    .gallery {
        padding: 6rem 2rem;
        background: var(--cream-100);
    }

    .gallery-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .gallery-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .gallery-header h2 {
        color: var(--green-900);
        margin-bottom: 0.75rem;
    }

    .gallery-header p {
        font-size: 1.125rem;
        color: var(--text-medium);
        max-width: 600px;
        margin: 0 auto;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
        gap: 1rem;
    }

    .gallery-grid a {
        display: block;
        overflow: hidden;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-md);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .gallery-grid a:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

    .gallery-grid img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

    .gallery-grid a:hover img {
        transform: scale(1.05);
    }

    .gallery-cta {
        text-align: center;
        margin-top: 2.5rem;
    }

    /* ========== VALUES SECTION ========== */
    .values {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
        position: relative;
        overflow: hidden;
    }

    .values::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('/assets/images/hero-wood-fence.jpg') center/cover no-repeat;
        opacity: 0.08;
        pointer-events: none;
    }

    .values::after {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 80% 50% at 20% 80%, rgba(174, 219, 91, 0.06) 0%, transparent 70%),
            radial-gradient(ellipse 60% 40% at 85% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
        pointer-events: none;
    }

    .values-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .values h2 {
        color: white;
        margin-bottom: 3rem;
        text-align: center;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .value-card {
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .value-icon {
        width: 72px;
        height: 72px;
        margin: 0 auto 1.25rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .value-icon svg {
        width: 36px;
        height: 36px;
        color: var(--brand-400);
    }

    .value-card h3 {
        color: white;
        margin-bottom: 0.5rem;
    }

    .value-card p {
        color: var(--green-200);
        line-height: 1.6;
    }

    /* ========== REVIEWS SECTION ========== */
    /* Review component styles in global.css */
    .reviews {
        padding: 6rem 2rem;
        background: var(--cream-50);
    }

    .reviews-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* CTA uses global .quote-section from global.css */

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
        .page-hero-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 3rem;
        }

        .page-hero-video video {
            height: 400px;
        }

        .hero-stats {
            justify-content: center;
        }

        .hero-stat {
            text-align: center;
        }

        .page-hero .hero-ctas {
            justify-content: center;
        }

        .story-container {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .story-image {
            order: -1;
        }

        .story-image img {
            height: 450px;
        }

        .story-image::before {
            display: none;
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .values-grid {
            grid-template-columns: repeat(2, 1fr);
        }

    }

    @media (max-width: 768px) {
        .page-hero-video video {
            height: 320px;
        }

        .hero-stats {
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }

        .story {
            padding: 4rem 1.5rem;
        }

        .story-image img {
            height: 350px;
        }

        .gallery {
            padding: 4rem 1.5rem;
        }

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

        .gallery-grid img {
            height: 240px;
        }

        .values {
            padding: 4rem 1.5rem;
        }

        .values-grid {
            grid-template-columns: 1fr;
            max-width: 400px;
            margin: 0 auto;
        }

        .reviews {
            padding: 4rem 1.5rem;
        }
    }
