/* Inner page layouts */
.page-main {
    padding-top: calc(var(--header-height) + 32px);
    min-height: 60vh;
}

.page-hero {
    padding: 48px 0 56px;
    background: linear-gradient(165deg, var(--grey-100) 0%, var(--white) 55%, rgba(51, 178, 73, 0.06) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 48px;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 12px;
}

.page-hero .lead {
    font-size: 1.2rem;
    color: #5c5c5c;
    max-width: 640px;
    line-height: 1.55;
}

.page-section {
    padding-bottom: 80px;
}

.prose {
    max-width: 720px;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 2rem 0 0.75rem;
    color: var(--ink);
}

.prose p {
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.7;
}

.prose ul {
    margin: 1rem 0 1rem 1.25rem;
}

.prose li {
    list-style: disc;
    margin-bottom: 0.5rem;
}

.card-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.info-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.info-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--ink);
}

.info-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.contact-card {
    background: var(--grey-100);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--grey-300);
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}
