/* ===================== Policy page ===================== */

.policy-hero {
    background: linear-gradient(180deg, #f8f5ef 0%, #fdfaf3 100%);
    border-bottom: 1px solid #ece6d6;
    padding: 60px 0 44px;
}

.policy-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #8a7a55;
    font-weight: 600;
    margin-bottom: 12px;
}

.policy-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 700;
    color: #1f1d18;
    letter-spacing: -0.5px;
    margin: 0;
}

.policy-section {
    padding: 60px 0 90px;
    background: #ffffff;
}

.policy-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .policy-layout {
        grid-template-columns: 1fr;
    }
}

.policy-nav {
    background: #fdfaf3;
    border: 1px solid #ece6d6;
    border-radius: 14px;
    padding: 18px;
    align-self: start;
    position: sticky;
    top: 90px;
}

.policy-nav-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8a7a55;
    font-weight: 600;
    margin-bottom: 12px;
}

.policy-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.policy-nav-list a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: #2e2a23;
    text-decoration: none;
    font-size: .95rem;
    transition: background .2s ease, color .2s ease;
}

.policy-nav-list a:hover {
    background: #f3ead4;
    color: #1f1d18;
}

.policy-nav-list a.is-active {
    background: #1f1d18;
    color: #fdfaf3;
}

.policy-content {
    background: #ffffff;
    color: #2e2a23;
    font-size: 1.05rem;
    line-height: 1.85;
}

.policy-content h2 {
    font-size: 1.6rem;
    color: #1f1d18;
    margin: 28px 0 14px;
    font-weight: 700;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.25rem;
    color: #1f1d18;
    margin: 24px 0 12px;
    font-weight: 700;
}

.policy-content p {
    margin-bottom: 18px;
}

.policy-content ul,
.policy-content ol {
    margin: 0 0 18px 0;
    padding-inline-start: 22px;
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-content strong {
    color: #1f1d18;
}
