/* ================================================================
   INTERIOR PAGES — Shared styles for Privacy, Terms, Support
   ================================================================ */

/* Force header to always be dark/solid on interior pages */
.page-interior header {
    background: var(--navy-deep);
    box-shadow: 0 1px 24px rgba(11, 29, 51, 0.08);
}

/* ---- Page Hero ---- */

.page-hero {
    background: var(--navy);
    padding: 160px 0 72px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 30% 60%, rgba(20, 44, 74, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 80% 30%, rgba(139, 115, 85, 0.08) 0%, transparent 60%);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(250, 250, 248, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(250, 250, 248, 0.012) 1px, transparent 1px);
    background-size: 80px 80px;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-overline {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bronze-light);
    font-weight: 500;
    margin-bottom: 16px;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 500;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 16px;
}

.page-hero-date {
    font-size: 13px;
    color: rgba(250, 250, 248, 0.35);
}

.page-hero-subtitle {
    font-size: 16px;
    color: rgba(250, 250, 248, 0.5);
    max-width: 480px;
    line-height: 1.7;
}

/* ---- Page Content ---- */

.page-content {
    padding: 80px 0 120px;
}

.page-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    color: var(--navy);
    margin-top: 48px;
    margin-bottom: 16px;
    line-height: 1.3;
}

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

.page-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-top: 32px;
    margin-bottom: 12px;
}

.page-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 16px;
    max-width: 680px;
}

.page-content ul {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    max-width: 680px;
}

.page-content ul li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.85;
    padding: 6px 0 6px 20px;
    position: relative;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 1px;
    background: var(--bronze);
}

.page-content a {
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--bronze);
    transition: border-color 0.3s ease;
}

.page-content a:hover {
    border-color: var(--navy);
}

.page-content strong {
    font-weight: 500;
    color: var(--text-primary);
}

/* ---- Footer Links Row ---- */

.footer-links {
    font-size: 12px;
    color: rgba(250, 250, 248, 0.3);
}

.footer-links a {
    color: rgba(250, 250, 248, 0.3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bronze-light);
}

/* ================================================================
   CONTACT SUPPORT — Page-specific
   ================================================================ */

.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}

@media (min-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }
}

/* Support Contact Cards */
.support-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--rule-light);
}

.support-card:last-of-type {
    border-bottom: none;
}

.support-card-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bronze);
}

.support-card-icon svg {
    width: 18px;
    height: 18px;
}

.support-card h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0 0 4px;
}

.support-card p {
    font-size: 15px;
    margin-bottom: 4px;
}

.support-card-note {
    font-size: 13px !important;
    color: var(--text-tertiary) !important;
    font-style: italic;
}

/* Platform Items */
.support-platforms {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
}

.support-platform-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--rule-light);
}

.support-platform-item:last-child {
    border-bottom: none;
}

.support-platform-item h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 4px;
}

.support-platform-item p {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 6px;
}

.support-platform-item a {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bronze);
    font-weight: 500;
    text-decoration: none;
    border-bottom: none;
    transition: color 0.3s ease;
}

.support-platform-item a:hover {
    color: var(--navy);
}

/* FAQ Section (full width, below grid) */
.support-faq-section {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--rule-light);
}

/* FAQ Accordion */
.support-faq {
    margin-top: 8px;
}

.support-faq details {
    border-bottom: 1px solid var(--rule-light);
}

.support-faq details:last-child {
    border-bottom: none;
}

.support-faq summary {
    padding: 18px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s ease;
}

.support-faq summary::-webkit-details-marker {
    display: none;
}

.support-faq summary::after {
    content: '+';
    font-size: 18px;
    color: var(--bronze);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.support-faq details[open] summary::after {
    content: '-';
}

.support-faq summary:hover {
    color: var(--bronze);
}

.support-faq details p {
    padding-bottom: 18px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}
