/* ═══════════════════════════════════════════════════════
   gravitas-press.css — Gravitas Press page CSS
   Loaded via $page_css on all 5 Gravitas Press pages.
   Uses CP global tokens where possible.
   Page-specific tokens are namespaced --gp-*
═══════════════════════════════════════════════════════ */

/* Map legacy Gravitas variables to CP global tokens */
:root {
  --gp-navy:    var(--forest, #1E3A5F);
  --gp-cream:   var(--ivory, #FAF7F2);
  --gp-stone:   var(--parchment, #F2EDE4);
  --gp-serif:   var(--font-body, 'Source Serif 4', Georgia, serif);
  --gp-display: var(--font-display, 'Playfair Display', Georgia, serif);
  --gp-sans:    var(--font-sans, 'Inter', system-ui, sans-serif);
  --gp-max-w:   1100px;
}
/* ── Tokens ──────────────────────────────────────────────── */
        

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: var(--gp-serif);
            font-size: 18px;
            line-height: 1.75;
            color: var(--ink);
            background: var(--white);
        }

        /* ── Utility ─────────────────────────────────────────────── */
        .container    { max-width: var(--gp-max-w); margin: 0 auto; padding: 0 24px; }
        .section      { padding: 80px 0; }
        .section-alt  { background: var(--gp-cream); }
        .section-dark { background: var(--gp-navy); color: var(--white); }
        .eyebrow {
            font-family: var(--gp-sans);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }
        .eyebrow.light { color: rgba(201,168,76,0.9); }

        /* ── Breadcrumb ──────────────────────────────────────────── */
        .breadcrumb {
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            font-family: var(--gp-sans);
            font-size: 13px;
            color: var(--muted);
        }
        .breadcrumb a { color: var(--muted); text-decoration: none; }
        .breadcrumb a:hover { color: var(--gp-navy); }
        .breadcrumb span { margin: 0 8px; }

        /* ── Hero ────────────────────────────────────────────────── */
        .hero {
            background: var(--gp-navy);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -60px; right: -80px;
            width: 500px; height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 64px;
            align-items: center;
        }
        .hero-seal {
            width: 120px; height: 120px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 32px;
            flex-shrink: 0;
        }
        .hero-seal-text {
            font-family: var(--gp-display);
            font-size: 14px;
            font-weight: 600;
            color: var(--gold);
            text-align: center;
            line-height: 1.3;
            padding: 12px;
        }
        .hero h1 {
            font-family: var(--gp-display);
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            color: var(--white);
            line-height: 1.15;
            margin-bottom: 24px;
        }
        .hero-subtitle {
            font-size: 19px;
            color: rgba(255,255,255,0.78);
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 560px;
        }
        .hero-divider {
            width: 48px;
            height: 2px;
            background: var(--gold);
            margin: 28px 0;
        }
        .hero-stats {
            display: flex;
            gap: 40px;
        }
        .hero-stat-num {
            font-family: var(--gp-display);
            font-size: 32px;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
        }
        .hero-stat-label {
            font-family: var(--gp-sans);
            font-size: 12px;
            color: rgba(255,255,255,0.6);
            margin-top: 4px;
        }
        /* Application card in hero */
        .hero-card {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(201,168,76,0.3);
            border-radius: 16px;
            padding: 36px 32px;
        }
        .hero-card h3 {
            font-family: var(--gp-display);
            font-size: 22px;
            color: var(--white);
            margin-bottom: 16px;
        }
        .hero-card p {
            font-size: 15px;
            color: rgba(255,255,255,0.7);
            line-height: 1.65;
            margin-bottom: 24px;
        }
        .btn {
            display: inline-block;
            font-family: var(--gp-sans);
            font-size: 14px;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: 8px;
            text-decoration: none;
            transition: opacity 0.2s;
        }
        .btn:hover { opacity: 0.88; }
        .btn-gold   { background: var(--gold); color: var(--gp-navy); }
        .btn-outline {
            border: 1.5px solid rgba(201,168,76,0.6);
            color: var(--gold);
            background: transparent;
        }
        .hero-card .btn { width: 100%; text-align: center; margin-bottom: 12px; }

        /* ── What Is Gravitas ─────────────────────────────────────── */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: start;
        }
        .about-text h2 {
            font-family: var(--gp-display);
            font-size: clamp(28px, 3.5vw, 40px);
            font-weight: 700;
            color: var(--gp-navy);
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .about-text p {
            color: var(--muted);
            margin-bottom: 20px;
        }
        .about-text p strong { color: var(--gp-navy); }
        .distinction-list {
            list-style: none;
            margin-top: 28px;
        }
        .distinction-list li {
            display: flex;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
            font-size: 16px;
            color: var(--ink);
        }
        .distinction-list li:last-child { border-bottom: none; }
        .distinction-icon {
            width: 22px; height: 22px;
            flex-shrink: 0;
            margin-top: 2px;
            color: var(--gold);
            font-size: 18px;
        }
        .parent-note {
            background: var(--gp-stone);
            border-left: 3px solid var(--gold);
            padding: 20px 24px;
            border-radius: 0 8px 8px 0;
            margin-top: 32px;
        }
        .parent-note p {
            font-size: 15px;
            color: var(--muted);
            margin: 0;
        }
        .parent-note a { color: var(--gp-navy); font-weight: 600; text-decoration: none; }

        /* ── Who We Publish ──────────────────────────────────────── */
        .genre-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 48px;
        }
        .genre-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-top: 3px solid var(--gold);
            border-radius: 12px;
            padding: 28px 24px;
        }
        .genre-card h3 {
            font-family: var(--gp-display);
            font-size: 20px;
            color: var(--gp-navy);
            margin-bottom: 10px;
        }
        .genre-card p {
            font-family: var(--gp-sans);
            font-size: 14px;
            color: var(--muted);
            line-height: 1.6;
        }
        .section-heading {
            font-family: var(--gp-display);
            font-size: clamp(26px, 3vw, 38px);
            font-weight: 700;
            color: var(--gp-navy);
            margin-bottom: 16px;
        }
        .section-heading.light { color: var(--white); }
        .section-sub {
            font-size: 17px;
            color: var(--muted);
            max-width: 600px;
            line-height: 1.7;
        }
        .section-sub.light { color: rgba(255,255,255,0.72); }

        /* ── What You Get ────────────────────────────────────────── */
        .deliverables {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-top: 48px;
        }
        .deliverable-item {
            display: flex;
            gap: 18px;
            align-items: flex-start;
        }
        .deliverable-num {
            font-family: var(--gp-display);
            font-size: 36px;
            font-weight: 700;
            color: rgba(201,168,76,0.3);
            line-height: 1;
            flex-shrink: 0;
            width: 40px;
        }
        .deliverable-body h4 {
            font-family: var(--gp-sans);
            font-size: 15px;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 6px;
        }
        .deliverable-body p {
            font-family: var(--gp-sans);
            font-size: 14px;
            color: rgba(255,255,255,0.65);
            line-height: 1.55;
        }

        /* ── Process ─────────────────────────────────────────────── */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 56px;
            position: relative;
        }
        .process-steps::before {
            content: '';
            position: absolute;
            top: 28px; left: 48px; right: 48px;
            height: 1px;
            background: var(--border);
        }
        .process-step {
            text-align: center;
            padding: 0 16px;
            position: relative;
        }
        .step-circle {
            width: 56px; height: 56px;
            border-radius: 50%;
            background: var(--gp-navy);
            color: var(--white);
            font-family: var(--gp-display);
            font-size: 20px;
            font-weight: 700;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 20px;
            position: relative;
            z-index: 1;
        }
        .process-step h4 {
            font-family: var(--gp-sans);
            font-size: 14px;
            font-weight: 600;
            color: var(--gp-navy);
            margin-bottom: 8px;
        }
        .process-step p {
            font-family: var(--gp-sans);
            font-size: 13px;
            color: var(--muted);
            line-height: 1.5;
        }

        /* ── FAQ ─────────────────────────────────────────────────── */
        .faq-list { margin-top: 40px; }
        .faq-item {
            border-bottom: 1px solid var(--border);
            padding: 24px 0;
        }
        .faq-item:first-child { border-top: 1px solid var(--border); }
        .faq-q {
            font-family: var(--gp-display);
            font-size: 19px;
            color: var(--gp-navy);
            margin-bottom: 12px;
        }
        .faq-a {
            font-size: 16px;
            color: var(--muted);
            line-height: 1.75;
            max-width: 720px;
        }

        /* ── Submission CTA ──────────────────────────────────────── */
        .submission-box {
            background: var(--gp-stone);
            border: 1px solid var(--border);
            border-top: 4px solid var(--gold);
            border-radius: 16px;
            padding: 48px;
            text-align: center;
            margin-top: 64px;
        }
        .submission-box h2 {
            font-family: var(--gp-display);
            font-size: 32px;
            color: var(--gp-navy);
            margin-bottom: 16px;
        }
        .submission-box p {
            font-size: 17px;
            color: var(--muted);
            max-width: 560px;
            margin: 0 auto 32px;
            line-height: 1.7;
        }
        .submission-requirements {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 24px 32px;
            text-align: left;
            max-width: 500px;
            margin: 0 auto 32px;
        }
        .submission-requirements h4 {
            font-family: var(--gp-sans);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 14px;
        }
        .submission-requirements ul {
            list-style: none;
        }
        .submission-requirements li {
            font-family: var(--gp-sans);
            font-size: 14px;
            color: var(--ink);
            padding: 7px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .submission-requirements li:last-child { border-bottom: none; }
        .req-check {
            color: var(--gold);
            font-weight: 700;
            font-size: 16px;
        }
        .btn-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ── Responsive ──────────────────────────────────────────── */
        @media (max-width: 900px) {
            .hero-inner     { grid-template-columns: 1fr; }
            .about-grid     { grid-template-columns: 1fr; }
            .genre-grid     { grid-template-columns: repeat(2, 1fr); }
            .deliverables   { grid-template-columns: 1fr; }
            .process-steps  { grid-template-columns: repeat(2, 1fr); }
            .process-steps::before { display: none; }
        }
        @media (max-width: 600px) {
            .section        { padding: 56px 0; }
            .genre-grid     { grid-template-columns: 1fr; }
            .hero           { padding: 64px 0 48px; }
            .hero-stats     { gap: 24px; }
            .submission-box { padding: 32px 20px; }
        }

        @media print {
            .btn, .hero-card { display: none; }
        }