/* Pahad Calling legal and policy pages */
.pc-legal-page {
    min-height: 100vh;
    padding: 112px 20px 72px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark, #1A2E1A);
}

.pc-legal-shell {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.pc-legal-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 6vw, 72px);
    border: 1px solid rgba(46, 125, 50, .14);
    border-radius: 28px;
    background:
        radial-gradient(circle at 92% 10%, rgba(240, 165, 0, .18), transparent 32%),
        linear-gradient(135deg, rgba(232, 245, 233, .96), rgba(250, 253, 247, .98));
    box-shadow: 0 26px 80px rgba(15, 35, 24, .08);
}

.pc-legal-hero::after {
    content: '';
    position: absolute;
    width: 210px;
    height: 210px;
    right: -80px;
    bottom: -105px;
    border-radius: 50%;
    border: 30px solid rgba(46, 125, 50, .08);
}

.pc-legal-eyebrow {
    margin-bottom: 14px;
    color: var(--saffron, #E8651A);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.pc-legal-hero h1 {
    max-width: 820px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    font-weight: 600;
    line-height: .96;
    letter-spacing: -.035em;
}

.pc-legal-hero p {
    max-width: 760px;
    margin-top: 22px;
    color: var(--text-soft, #5C6B5C);
    font-size: clamp(.98rem, 2vw, 1.12rem);
    line-height: 1.85;
}

.pc-legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.pc-legal-meta span,
.pc-legal-meta a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(46, 125, 50, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    color: var(--text-mid, #3E4E3E);
    font-size: .78rem;
    text-decoration: none;
}

.pc-legal-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    margin-top: 30px;
    align-items: start;
}

.pc-legal-nav,
.pc-legal-content,
.pc-legal-card {
    border: 1px solid rgba(46, 125, 50, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 18px 55px rgba(15, 35, 24, .055);
}

.pc-legal-nav {
    position: sticky;
    top: 98px;
    padding: 20px;
}

.pc-legal-nav strong {
    display: block;
    margin-bottom: 12px;
    color: var(--text-dark, #1A2E1A);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
}

.pc-legal-nav a {
    display: block;
    padding: 9px 10px;
    border-radius: 9px;
    color: var(--text-soft, #5C6B5C);
    font-size: .84rem;
    line-height: 1.35;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.pc-legal-nav a:hover,
.pc-legal-nav a[aria-current='page'] {
    background: var(--meadow, #E8F5E9);
    color: var(--sage, #2E7D32);
}

.pc-legal-content {
    padding: clamp(25px, 5vw, 58px);
}

.pc-legal-content section + section {
    margin-top: 38px;
    padding-top: 34px;
    border-top: 1px solid rgba(46, 125, 50, .1);
}

.pc-legal-content h2 {
    margin-bottom: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 2.55rem);
    font-weight: 600;
    line-height: 1.08;
}

.pc-legal-content h3 {
    margin: 24px 0 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
}

.pc-legal-content p,
.pc-legal-content li {
    color: var(--text-soft, #5C6B5C);
    font-size: .96rem;
    line-height: 1.85;
}

.pc-legal-content p + p { margin-top: 13px; }
.pc-legal-content ul,
.pc-legal-content ol { margin: 12px 0 0 22px; }
.pc-legal-content li + li { margin-top: 8px; }

.pc-legal-content a {
    color: var(--sage, #2E7D32);
    text-underline-offset: 3px;
}

.pc-legal-note,
.pc-legal-warning,
.pc-legal-success {
    margin: 22px 0;
    padding: 18px 20px;
    border-radius: 14px;
    font-size: .92rem;
    line-height: 1.7;
}

.pc-legal-note {
    border-left: 4px solid var(--cerulean, #2176AE);
    background: rgba(33, 118, 174, .075);
    color: #31536a;
}

.pc-legal-warning {
    border-left: 4px solid var(--saffron, #E8651A);
    background: rgba(232, 101, 26, .075);
    color: #714125;
}

.pc-legal-success {
    border-left: 4px solid var(--sage, #2E7D32);
    background: var(--meadow, #E8F5E9);
    color: #28552d;
}

.pc-legal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.pc-legal-card {
    display: block;
    padding: 25px;
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.pc-legal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 23px 65px rgba(15, 35, 24, .095);
}

.pc-legal-card small {
    color: var(--saffron, #E8651A);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.pc-legal-card h2 {
    margin: 10px 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
}

.pc-legal-card p {
    color: var(--text-soft, #5C6B5C);
    font-size: .9rem;
    line-height: 1.65;
}

.pc-legal-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.pc-legal-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pc-legal-field {
    display: grid;
    gap: 8px;
}

.pc-legal-field span {
    color: var(--text-mid, #3E4E3E);
    font-size: .8rem;
    font-weight: 650;
}

.pc-legal-field input,
.pc-legal-field textarea,
.pc-legal-field select {
    width: 100%;
    border: 1px solid rgba(46, 125, 50, .18);
    border-radius: 12px;
    background: #fff;
    color: var(--text-dark, #1A2E1A);
    padding: 13px 14px;
    font: inherit;
    outline: none;
}

.pc-legal-field input:focus,
.pc-legal-field textarea:focus,
.pc-legal-field select:focus {
    border-color: var(--sage, #2E7D32);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, .08);
}

.pc-legal-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--text-soft, #5C6B5C);
    font-size: .88rem;
    line-height: 1.55;
}

.pc-legal-check input { margin-top: 4px; }

.pc-legal-button {
    width: fit-content;
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 12px;
    background: var(--sage, #2E7D32);
    color: #fff;
    font: inherit;
    font-size: .86rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.pc-legal-button:hover {
    transform: translateY(-2px);
    background: var(--fern, #388E3C);
}

.pc-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

@media (max-width: 860px) {
    .pc-legal-layout { grid-template-columns: 1fr; }
    .pc-legal-nav { position: static; }
    .pc-legal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .pc-legal-page { padding: 92px 13px 48px; }
    .pc-legal-hero { border-radius: 20px; }
    .pc-legal-content { border-radius: 18px; }
    .pc-legal-form-grid { grid-template-columns: 1fr; }
    .pc-legal-button { width: 100%; }
}
