/* ==========================================================================
   OUR WORK PAGE STYLES
   ========================================================================== */
/* Hero */
.ow-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    background-color: var(--dark-green);
    background-size: cover;
    background-position: center;
    padding: 0 0 60px;
}
.ow-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 1;
}
.ow-hero-inner {
    position: relative;
    z-index: 2;
    color: var(--white);
}
.ow-hero-inner h1 {
    max-width: 600px;
}
.ow-hero-inner p {
    max-width: 600px;
}
.ow-hero .hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.ow-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 3.5rem;
}
.ow-hero p {
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.7;
}
/* Projects */
.ow-projects h2 {
    margin-bottom: 8px;
}
.ow-project-card {
    margin-bottom: 48px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.ow-project-image {
    width: 100%;
    height: 320px;
    background: var(--light-gray);
    overflow: hidden;
}
.ow-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ow-project-content {
    padding: 32px;
}
.ow-project-content h3 {
    margin-bottom: 12px;
}
.ow-project-content p {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 700px;
}
/* PEL Process */
.ow-pel {
    background: var(--white);
}
.ow-pel h2 {
    margin-bottom: 24px;
}
.pel-docs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 700px;
}
.pel-doc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--text-primary);
    transition: var(--transition);
}
.pel-doc-item:hover {
    background: var(--medium-gray);
}
.pel-doc-icon {
    font-size: 1.25rem;
}
/* Recaps */
.ow-recaps {
    padding: 80px 0;
}
.ow-recaps h2 {
    margin-bottom: 12px;
}
.ow-recaps > .container > p {
    text-align: center;
    margin-bottom: 40px;
}
.recaps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 0;
}
.recap-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.recap-card:hover h4 {
    color: var(--dark-green);
}
.recap-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    background: var(--light-gray);
}
.recap-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.recap-card:hover .recap-card-image img {
    transform: scale(1.03);
}
.recap-card .label-text {
    font-family: var(--font-label);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.recap-card h4 {
    font-size: 1.25rem;
    margin-top: 4px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.recap-card p {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.6;
}
/* Suggest Project */
.suggest-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.suggest-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-body);
}
.check-icon {
    color: var(--dark-green);
    font-weight: 700;
    font-size: 1.125rem;
}
/* Island Park Bears — stacked layout on Our Work page only */
.ow-bears .block-bears .container {
    display: block;
}
.ow-bears .block-bears-content {
    padding: 60px 0 40px;
}
.ow-bears .block-bears h3 {
    margin-bottom: 16px;
}
.ow-bears .block-bears p {
    font-size: 1rem;
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 24px;
}
.ow-bears .block-bears-image {
    flex: none;
    min-height: auto;
    max-height: 450px;
    overflow: hidden;
    padding-bottom: 40px;
}
.ow-bears .block-bears-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    max-height: 400px;
}

/* Responsive */
@media (max-width: 768px) {
    .ow-hero {
        min-height: 70vh;
        padding-top: 100px;
    }
    .ow-hero h1 {
        font-size: 2.5rem;
    }
    .ow-project-image {
        height: 200px;
    }
    .recaps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}
@media (max-width: 480px) {
    .ow-hero {
        min-height: 60vh;
    }
    .recaps-grid {
        grid-template-columns: 1fr;
    }
}