.policy-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 clamp(22px, 5vw, 48px) clamp(60px, 8vw, 100px);
}

.policy-hero {
    border-bottom: 1px solid var(--line);
    padding: clamp(48px, 6vw, 80px) 0 clamp(28px, 3.5vw, 44px);
    margin-bottom: clamp(36px, 5vw, 60px);
}

.policy-hero .label {
    margin-bottom: 14px;
}

.policy-title {
    font-family: 'Bebas Neue', Impact, sans-serif;
    font-size: clamp(56px, 8vw, 108px);
    line-height: .88;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 0 0 18px;
    color: var(--ink);
}

.policy-meta {
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-family: 'Oswald', sans-serif;
    margin: 0;
}

.policy-body {
    display: grid;
    gap: clamp(36px, 5vw, 56px);
}

.policy-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--ink);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--yellow);
    display: inline-block;
}

.policy-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--ink);
    margin: 0 0 10px;
}

.policy-section p,
.policy-section address {
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.65;
    color: #333;
    margin: 0 0 14px;
    font-weight: 300;
    font-family: 'Oswald', sans-serif;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section a {
    /*color: var(--ink);*/
    border-bottom: 1px solid var(--yellow);
    transition: color .2s, border-color .2s;
}

.policy-section a:hover {
    color: #000;
    border-bottom-color: #000;
}

.policy-note {
    margin-top: 18px !important;
    padding: 14px 18px;
    background: #fffbea;
    border-left: 4px solid var(--yellow);
    font-size: 14px !important;
    color: #555 !important;
}

.policy-table-wrap {
    overflow-x: auto;
    margin: 18px 0;
    border: 1px solid var(--line);
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

.policy-table th {
    background: #0a0a0a;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .06em;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
}

.policy-table td {
    padding: 13px 16px;
    border-top: 1px solid var(--line);
    vertical-align: top;
    color: #333;
    line-height: 1.5;
}

.policy-table tr:nth-child(even) td {
    background: #fafaf7;
}

.policy-table code {
    font-family: monospace;
    font-size: 13px;
    background: #f0f0ec;
    padding: 2px 6px;
    border-radius: 3px;
    color: #111;
    white-space: nowrap;
}

.policy-choices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.policy-choice-card {
    border: 1px solid var(--line);
    padding: 22px;
    background: #fafaf7;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policy-choice-card p {
    font-size: 14px !important;
    margin: 0 !important;
    flex: 1;
}

.policy-btn {
    display: inline-block;
    margin-top: 6px;
    background: #0a0a0a;
    color: #fff;
    text-decoration: none;
    border: none;
    border-bottom: none !important;
    padding: 10px 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    cursor: pointer;
    transition: background .25s, color .25s;
    width: max-content;
}

.policy-btn:hover {
    background: var(--yellow);
    color: #000;
}

.policy-address {
    font-style: normal;
    line-height: 1.8 !important;
}

@media (max-width: 600px) {
    .policy-table th:nth-child(3),
    .policy-table td:nth-child(3) {
        display: none;
    }
}