/* ═══════════════════════════════════════════════════════
   JELLYFISH — Static info pages (shared)
   ═══════════════════════════════════════════════════════ */

.jf-page {
    background: #fff;
    min-height: 100vh;
    padding: 80px 24px 120px;
    font-family: var(--jf-font-body, 'Futura', 'Montserrat', sans-serif);
    color: var(--jf-navy, #1B2A4A);
}

.jf-page-inner {
    max-width: 760px;
    margin: 0 auto;
}

/* ── Hero ── */
.jf-page-label {
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.4;
    margin: 0 0 18px;
}

.jf-page-hero {
    font-family: 'EZRA', Georgia, serif;
    font-size: clamp(36px, 6vw, 62px);
    font-weight: 400;
    margin: 0 0 72px;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

/* ── Accordion (details/summary) ── */
.jf-page-item {
    border-bottom: 1px solid rgba(27, 42, 74, 0.14);
}

.jf-page-item:first-of-type {
    border-top: 1px solid rgba(27, 42, 74, 0.14);
}

.jf-page-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 400;
    user-select: none;
    transition: opacity 0.15s ease;
}

.jf-page-item summary::-webkit-details-marker { display: none; }
.jf-page-item summary:hover { opacity: 0.6; }

.jf-page-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
    opacity: 0.45;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.jf-page-item[open] summary::after {
    transform: rotate(45deg);
    opacity: 1;
}

.jf-page-body {
    padding: 0 0 28px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(27, 42, 74, 0.72);
    max-width: 640px;
}

.jf-page-body p { margin: 0 0 10px; }
.jf-page-body p:last-child { margin-bottom: 0; }

.jf-page-body ul {
    margin: 6px 0 10px;
    padding: 0;
    list-style: none;
}

.jf-page-body ul li {
    padding: 3px 0 3px 18px;
    position: relative;
}

.jf-page-body ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    opacity: 0.35;
}

/* ── Section heading (for pages with groups) ── */
.jf-page-section {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.35;
    margin: 56px 0 24px;
}

.jf-page-section:first-of-type { margin-top: 0; }

/* ── Size table ── */
.jf-size-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 10px;
    font-size: 13px;
}

.jf-size-table th {
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: left;
    padding: 12px 16px 12px 0;
    border-bottom: 1px solid rgba(27, 42, 74, 0.2);
    opacity: 0.55;
}

.jf-size-table td {
    padding: 14px 16px 14px 0;
    border-bottom: 1px solid rgba(27, 42, 74, 0.08);
    font-weight: 300;
}

.jf-size-table tr:last-child td { border-bottom: none; }

.jf-size-table td:first-child {
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ── Highlight block ── */
.jf-page-note {
    margin-top: 64px;
    padding: 26px 30px;
    border-left: 2px solid var(--jf-navy, #1B2A4A);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(27, 42, 74, 0.6);
}

.jf-page-note a {
    color: var(--jf-navy, #1B2A4A);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .jf-page { padding: 52px 20px 80px; }
    .jf-page-hero { margin-bottom: 48px; }
    .jf-page-item summary { font-size: 14px; padding: 20px 0; }
    .jf-size-table th,
    .jf-size-table td { padding: 12px 12px 12px 0; }
}
