/* Policy pages + interior content */

.policy-page,
.simple-page {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow-x: hidden;
}

.policy-body {
    padding: 0;
}

.policy-section {
    margin-bottom: 28px;
}

.policy-section h2 {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 12px;
}

.policy-section p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--muted);
    margin-bottom: 12px;
}

.policy-section a {
    color: var(--gold);
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

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

/* Shared footer — legacy .site-footer replaced by .bayside-footer in footer.css */

.policy-page .bayside-footer,
.simple-page .bayside-footer {
    margin-top: 0;
}

/* Contact form */
.contact-alert {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-alert-success {
    background: var(--green-light);
    border: 1px solid #6ee7b7;
    color: var(--green);
}

.contact-alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: var(--red);
}

.contact-form {
    max-width: 480px;
    margin: 0 auto;
}

.form-field {
    margin-bottom: 14px;
}

.form-field label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--text);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: 1.5px;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.15s;
}

.contact-submit:hover { background: #000; }

.contact-submit:active {
    transform: scale(0.99);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-disclaimer {
    font-size: 10px;
    line-height: 1.55;
    color: var(--muted);
    margin-bottom: 10px;
}

.footer-copy {
    font-size: 10px;
    color: #9ca3af;
    margin: 0;
}

@media (max-width: 479px) {
    .policy-body,
    .interior-content { padding-left: 0; padding-right: 0; }
}
