/* =============================================
   POLICY PAGES — Layout & Typography
   ============================================= */

.policy-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.policy-hero {
    padding: 10rem var(--space-md) 4rem;
    text-align: center;
    background: var(--cream);
}

.policy-hero .section-label {
    margin-bottom: 1rem;
}

.policy-hero .section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
}

.policy-hero-desc {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--mid);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.policy-content {
    max-width: 740px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md);
    flex: 1;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.policy-section p,
.policy-section li {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.policy-section ul,
.policy-section ol {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.policy-section li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.policy-section li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.policy-section ol {
    counter-reset: policy-counter;
}

.policy-section ol li {
    counter-increment: policy-counter;
}

.policy-section ol li::before {
    content: counter(policy-counter) '.';
    font-family: var(--font-serif);
    font-weight: 600;
}

.policy-highlight {
    background: var(--cream);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    border-left: 2px solid var(--gold);
}

.policy-highlight p {
    margin-bottom: 0;
    font-style: italic;
}

.policy-contact-box {
    background: var(--black);
    color: var(--white);
    padding: 2.5rem 3rem;
    text-align: center;
    margin-top: 3rem;
}

.policy-contact-box p {
    color: var(--stone);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-contact-box a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.policy-contact-box a:hover {
    border-bottom-color: var(--gold);
}

.policy-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.policy-back:hover {
    color: var(--black);
}

.policy-back svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

/* Fix nav links for inner pages */
.policy-page nav .nav-links a,
.policy-page .nav-cta {
    color: var(--black);
}

.policy-page nav.scrolled .nav-links a,
.policy-page nav.scrolled .nav-cta {
    color: var(--black);
}

/* Responsive */
@media (max-width: 767px) {
    .policy-hero {
        padding: 8rem var(--space-sm) 3rem;
    }

    .policy-content {
        padding: var(--space-md) var(--space-sm);
    }

    .policy-contact-box {
        padding: 2rem 1.5rem;
    }
}
