/* ==========================================================================
   Policy Page – Visitor Policy & Privacy Policy
   Matches the site's dark/blue palette with bronze/gold accents
   ========================================================================== */

/* ── Vertical labels ── */
.policy-vertical-label {
    color: rgba(200, 178, 156, 0.18);
    font-family: "Fira Sans Condensed", sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    user-select: none;
}

.policy-wrapper .vertical-label        { left: 12px; }
.policy-wrapper .vertical-label-right  { right: 12px; transform: translateY(-50%) rotate(180deg); }

/* ── Page title ── */
.policy-main-title {
    color: #C8B29C;
    font-family: "Fira Sans Condensed", sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

/* ── Gold divider under title ── */
.policy-divider {
    width: 60px;
    height: 3px;
    background-color: #987C4D;
    margin-bottom: 2.5rem;
}

/* ── Content area ── */
.policy-content {
    color: #e8e0d4;
    font-family: "Fira Sans", sans-serif;
    font-size: 0.95rem;
    line-height: 1.85;
    padding-bottom: 4rem;
}

/* ── Headings inside content ── */
.policy-content h1 {
    color: #C8B29C;
    font-family: "Fira Sans Condensed", sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 2rem 0 0.75rem;
    border-bottom: 1px solid rgba(152, 124, 77, 0.4);
    padding-bottom: 0.5rem;
}

.policy-content h2 {
    color: #C8B29C;
    font-family: "Fira Sans Condensed", sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 2rem 0 0.6rem;
}

.policy-content h3 {
    color: #b8933c;
    font-family: "Fira Sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.4rem;
}

/* ── Paragraphs ── */
.policy-content p {
    margin-bottom: 1rem;
    color: #e8e0d4;
}

/* ── Lists ── */
.policy-content ul,
.policy-content ol {
    padding-left: 1.4rem;
    margin-bottom: 1.2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: #e8e0d4;
}

.policy-content li strong {
    color: #C8B29C;
}

/* ── Links ── */
.policy-content a {
    color: #b8933c;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.policy-content a:hover {
    color: #d4aa58;
}

.policy-content a:visited {
    color: #b8933c;
}

/* ── Tables ── */
.policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.85rem;
}

.policy-content table th {
    background-color: rgba(152, 124, 77, 0.25);
    color: #C8B29C;
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 10px 12px;
    border: 1px solid rgba(152, 124, 77, 0.35);
    text-align: left;
}

.policy-content table td {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e8e0d4;
    vertical-align: top;
}

.policy-content table tr:nth-child(even) td {
    background-color: rgba(255, 255, 255, 0.04);
}

/* ── Strong / bold ── */
.policy-content strong {
    color: #ffffff;
    font-weight: 600;
}

/* ── Mobile ── */
@media (max-width: 768px) {
    .policy-wrapper .vertical-label,
    .policy-wrapper .vertical-label-right {
        display: none;
    }

    .policy-content table {
        font-size: 0.78rem;
    }

    .policy-content table th,
    .policy-content table td {
        padding: 6px 8px;
    }
}