/* Legal pages — Privacy & Terms */

.lg-hero {
    position: relative;
    margin-top: -84px;
    padding: 120px 0 72px;
    text-align: center;
    overflow: hidden;
}
.lg-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d2818 0%, #123c24 50%, #1a4d30 100%);
}
.lg-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(197,168,90,0.12) 0%, transparent 60%);
}
.lg-hero-content { position: relative; z-index: 1; }
.lg-hero-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 14px;
}
.lg-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 52px);
    color: #fff;
    margin-bottom: 10px;
}
.lg-hero-meta {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

.lg-body {
    padding: 56px 0 80px;
    background: var(--gray-light, #f7f5f0);
}
.lg-wrap {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}
.lg-prose {
    background: #fff;
    border-radius: 16px;
    padding: 40px 44px;
    box-shadow: 0 8px 40px rgba(18,60,36,0.06);
    border: 1px solid var(--border-color, #e8e4dc);
}
.lg-section { margin-bottom: 32px; }
.lg-section:last-of-type { margin-bottom: 0; }
.lg-section h2 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(197,168,90,0.25);
}
.lg-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted, #5a6b5e);
    margin-bottom: 12px;
}
.lg-section ul {
    margin: 0 0 12px 0;
    padding-left: 22px;
}
.lg-section li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted, #5a6b5e);
    margin-bottom: 8px;
}
.lg-contact-box {
    margin-top: 36px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(18,60,36,0.04), rgba(197,168,90,0.08));
    border-radius: 12px;
    border-left: 4px solid var(--accent);
}
.lg-contact-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary);
}
.lg-contact-box p { margin-bottom: 16px; }
.lg-contact-box a { color: var(--primary); font-weight: 600; }

.lg-aside-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid var(--border-color, #e8e4dc);
    position: sticky;
    top: 100px;
}
.lg-aside-card h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 16px;
}
.lg-aside-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lg-aside-card a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.lg-aside-card a:hover { color: var(--accent); }

@media (max-width: 900px) {
    .lg-wrap { grid-template-columns: 1fr; }
    .lg-aside-card { position: static; }
    .lg-prose { padding: 28px 24px; }
}
