/* ========================================
   Orrick Page Styles
   ======================================== */

.ork-hero {
    padding: 10rem 5% 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ork-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.07) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(77, 157, 224, 0.07) 0%, transparent 50%);
}

.ork-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.ork-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ork-hero .ork-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.ork-content {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

.ork-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;

}

/* Practice Area Cards */
.ork-areas {
    padding: 2rem 5% 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.ork-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.ork-area-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ork-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ork-area-card:hover {
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.ork-area-card:hover::before {
    opacity: 1;
}

.ork-area-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.ork-area-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.ork-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ork-card-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.2rem;
    position: relative;
}

.ork-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-blue);
}

/* Image Gallery */
.ork-gallery {
    padding: 1rem 5% 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.ork-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.ork-gallery-item:hover {
    border-color: rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.ork-gallery-item.wide {
    grid-column: 1 / -1;
}

.ork-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Highlights Section */
.ork-highlights {
    padding: 4rem 5% 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.ork-highlights h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.ork-highlight-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ork-highlight-list li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.ork-highlight-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-blue);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    margin-bottom: 1rem;
}

.back-link:hover {
    color: var(--accent-blue);
}

@media (max-width: 768px) {
    .ork-areas-grid {
        grid-template-columns: 1fr;
    }

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

    .ork-hero {
        padding: 8rem 5% 3rem;
    }
}
