/* ============================================
   COLA CROWN — Inner Page Styles
   ============================================ */

/* Page header */
.page-header {
    background: var(--ink);
    color: var(--cream);
    padding: 160px 0 80px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(181,58,44,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(214,184,122,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(245,239,228,0.6);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(245,239,228,0.6);
    transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gold-soft); }

.breadcrumb .current { color: var(--gold-soft); }

.breadcrumb span:not(.current) { color: rgba(245,239,228,0.3); }

.page-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--gold-soft);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 800;
    line-height: 0.95;
    color: var(--cream);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.page-header h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-soft);
}

.page-lead {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(245,239,228,0.75);
    max-width: 620px;
}

/* Page section */
.page-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    z-index: 2;
}

.page-section-alt {
    background: var(--paper);
}

.page-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.page-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--cream-2);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid var(--line);
}

.page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-image .img-fallback-content {
    position: absolute;
    inset: 0;
}

.page-content h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.page-content p {
    color: var(--ink-mid);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 18px;
}

/* Highlights grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    margin-top: 20px;
}

.highlight-item {
    padding: 36px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    transition: background 0.2s;
    position: relative;
}

.highlight-item:hover {
    background: var(--paper);
}

.highlight-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--rust);
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.highlight-item h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.2;
}

.highlight-item p {
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 1.7;
}

/* Investment card */
.invest-card {
    background: var(--ink);
    color: var(--cream);
    padding: 64px;
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.invest-card .about-kicker {
    color: var(--gold-soft);
}

.invest-card h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.invest-card p {
    color: rgba(245,239,228,0.65);
    font-size: 15px;
    line-height: 1.7;
}

.invest-figures {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.invest-fig {
    padding: 24px 0;
    border-top: 1px solid rgba(245,239,228,0.12);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    flex-wrap: wrap;
}

.invest-fig:last-child {
    border-bottom: 1px solid rgba(245,239,228,0.12);
}

.invest-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gold-soft);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.invest-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--cream);
    text-align: right;
}

/* Page CTA */
.page-cta {
    background: var(--paper);
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--line);
}

.page-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.page-cta h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--rust);
}

.page-cta p {
    color: var(--ink-mid);
    font-size: 17px;
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Legal page content */
.legal-section {
    padding: 80px 0 100px;
    background: var(--cream);
    position: relative;
    z-index: 2;
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 60px;
    box-shadow: var(--shadow-md);
}

.legal-content .legal-meta {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink-mid);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    margin: 36px 0 16px;
    letter-spacing: -0.01em;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 24px 0 12px;
}

.legal-content p,
.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.legal-content ul li {
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: var(--rust);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: var(--rust-dark);
}

.legal-content strong {
    color: var(--ink);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .page-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .page-image {
        max-width: 480px;
        margin: 0 auto;
    }
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .invest-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 130px 0 60px;
    }
    .page-section,
    .page-cta {
        padding: 70px 0;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .legal-content {
        padding: 32px 24px;
    }
    .invest-card {
        padding: 32px 24px;
    }
    .invest-value {
        font-size: 22px;
    }
}