
body {
    background: var(--charcoal);
    color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/*h1, h2, h3 {*/
/*    font-family: 'Moneta-light', serif;*/
/*    text-transform: uppercase;*/
/*}*/

/* ========== HERO SECTION ========== */
.hero {
    padding: 10rem 5% 8rem;
    text-align: center;
    position: relative;
    background:
            radial-gradient(ellipse at 30% 50%, rgba(194, 174, 146, 0.06) 0%, transparent 60%),
            radial-gradient(ellipse at 70% 30%, rgba(194, 174, 146, 0.04) 0%, transparent 60%),
            var(--charcoal);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
            0deg, transparent, transparent 2px,
            rgba(194, 174, 146, 0.015) 2px, rgba(194, 174, 146, 0.015) 4px
    );
    pointer-events: none;
}

.hero-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 {
    /*font-family: 'Cormorant Garamond', serif;*/
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    color: var(--off-white);
    line-height: 1.15;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero h1 .gold-text {
    color: var(--gold);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--grey);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== SECTION BASE ========== */
section.content-section {
    padding: 7rem 5%;
    position: relative;
}

section.content-section:nth-child(even) {
    background: var(--charcoal-light);
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-title {
    /*font-family: 'Cormorant Garamond', serif;*/
    
    /*font-size: clamp(2rem, 4vw, 3.5rem);*/
    /*font-weight: 300;*/
    /*letter-spacing: 4px;*/
    /*margin-bottom: 3rem;*/
    /*line-height: 1.2;*/

    font-family: 'Moneta-light', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    /*color: var(--gold);*/
    margin: 0 0 1rem 0;
    /*letter-spacing: 4px;*/
    text-transform: uppercase;
}

/* ========== THREE INSTRUMENT CARDS ========== */
.instruments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.instrument-card {
    background: var(--charcoal-lighter);
    border: 1px solid rgba(194, 174, 146, 0.15);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.instrument-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.instrument-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card-header {
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(194, 174, 146, 0.08) 0%, transparent 100%);
    border-bottom: 1px solid rgba(194, 174, 146, 0.1);
    text-align: center;
}

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--charcoal);
    /*font-family: 'Cormorant Garamond', serif;*/
    font-size: 1.6rem;
    font-weight: 600;
}

.card-title {
    /*font-family: 'Cormorant Garamond', serif;*/
    font-family: 'Moneta-light', serif;
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.card-body {
    padding: 2rem;
}

.card-description {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.card-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(194, 174, 146, 0.08);
}

.card-detail-row:last-child {
    border-bottom: none;
}

.card-detail-label {
    font-size: 0.8rem;
    color: var(--grey);
    letter-spacing: 1px;
}

.card-detail-value {
    font-size: 0.85rem;
    color: var(--off-white);
    font-weight: 500;
    text-align: right;
}

/* ========== RISK SPECTRUM ========== */
.risk-spectrum-section {
    padding: 7rem 5%;
    background: var(--charcoal);
}

.risk-spectrum-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.spectrum-bar {
    margin-top: 4rem;
    position: relative;
    padding-bottom: 1rem;
}

.spectrum-track {
    height: 4px;
    background: linear-gradient(90deg,
    var(--gold-light) 0%,
    var(--gold) 35%,
    var(--gold-dark) 70%,
    rgba(166, 138, 98, 0.4) 100%
    );
    border-radius: 2px;
    position: relative;
    margin: 0 2rem;
}

.spectrum-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.8rem;
    padding: 0 2rem;
}

.spectrum-label-text {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
}

.spectrum-points {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.spectrum-point {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.spectrum-point::before {
    content: '';
    width: 14px;
    height: 14px;
    background: var(--gold);
    border: 3px solid var(--charcoal);
    border-radius: 50%;
    display: block;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 2px var(--gold), 0 0 15px rgba(194, 174, 146, 0.3);
}

.spectrum-point-title {
    /*font-family: 'Cormorant Garamond', serif;*/
    /*font-family: Berthold Akzidenz Grotesk BE Light;*/
    font-family: 'Berthold Akzidenz Grotesk BE', sans-serif;
    text-transform: uppercase;
    font-size: 0.7rem;
    /*font-weight: 400;*/
    letter-spacing: 10px;
    margin-bottom: 0.5rem;
}

.spectrum-point-desc {
    font-size: 0.8rem;
    color: var(--grey);
    line-height: 1.7;
}

/* ========== COMPARISON TABLE ========== */
.comparison-table-wrapper {
    margin-top: 4rem;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
}

.comparison-table thead th {
    background: var(--charcoal-lighter);
    padding: 1.8rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    text-align: left;
    border-bottom: 2px solid var(--gold);
}

.comparison-table thead th:first-child {
    width: 22%;
}

.comparison-table tbody td {
    padding: 1.4rem 1.5rem;
    font-size: 0.88rem;
    color: var(--grey);
    line-height: 1.7;
    border-bottom: 1px solid rgba(194, 174, 146, 0.08);
    vertical-align: top;
}

.comparison-table tbody tr:hover td {
    background: rgba(194, 174, 146, 0.03);
}

.comparison-table tbody td:first-child {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--off-white);
    font-weight: 500;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.table-highlight {
    color: var(--gold);
    font-weight: 500;
}

/* ========== DEEP DIVE SECTIONS ========== */
.deep-dive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
}

.deep-dive-text {
    font-size: 1rem;
    line-height: 2;
    color: var(--grey);
    letter-spacing: 0.3px;
}

.deep-dive-text p {
    margin-bottom: 1.8rem;
}

.deep-dive-sidebar {
    background: linear-gradient(135deg, rgba(194, 174, 146, 0.05) 0%, transparent 100%);
    border-left: 2px solid var(--gold);
    padding: 2.5rem;
}

.sidebar-item {
    margin-bottom: 2.5rem;
}

.sidebar-item:last-child {
    margin-bottom: 0;
}

.sidebar-number {
    /*font-family: 'Cormorant Garamond', serif;*/
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.sidebar-title {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.sidebar-desc {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ========== RISK FACTORS ========== */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.risk-card {
    background: var(--charcoal-lighter);
    border-left: 2px solid var(--gold);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.risk-card:hover {
    background: rgba(194, 174, 146, 0.05);
    transform: translateX(8px);
}

.risk-card-label {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.risk-card-title {
    /*font-family: 'Cormorant Garamond', serif;*/
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-family: 'Moneta-light', serif;
    text-transform: uppercase;
}

.risk-card-text {
    color: var(--grey);
    font-size: 0.88rem;
    line-height: 1.8;
}

/* ========== WHO SHOULD INVEST ========== */
.investor-profiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.investor-profile {
    background: var(--charcoal-lighter);
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(194, 174, 146, 0.12);
    transition: all 0.4s ease;
}

.investor-profile:hover {
    border-color: rgba(194, 174, 146, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.profile-header {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(194, 174, 146, 0.1) 0%, rgba(194, 174, 146, 0.02) 100%);
    border-bottom: 1px solid rgba(194, 174, 146, 0.1);
    text-align: center;
}

.profile-instrument {
    /*font-family: 'Cormorant Garamond', serif;*/
    /*font-size: 1.6rem;*/
    /*font-weight: 400;*/
    /*letter-spacing: 2px;*/
    /*margin-bottom: 0.3rem;*/
    /*text-transform: uppercase;*/
    font-family: 'Moneta-light', serif;
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.profile-tagline {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.profile-body {
    padding: 2rem;
}

.profile-body p {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.profile-suited {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.profile-traits {
    list-style: none;
    padding: 0;
}

.profile-traits li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(194, 174, 146, 0.06);
    font-size: 0.85rem;
    color: var(--grey);
    padding-left: 1.2rem;
    position: relative;
}

.profile-traits li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
}

.profile-traits li:last-child {
    border-bottom: none;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg,
    rgba(194, 174, 146, 0.08) 0%,
    transparent 50%,
    rgba(194, 174, 146, 0.04) 100%);
    text-align: center;
    padding: 7rem 5%;
    border-top: 1px solid rgba(194, 174, 146, 0.15);
    border-bottom: 1px solid rgba(194, 174, 146, 0.15);
}

.cta-title {
    /*font-family: 'Cormorant Garamond', serif;*/
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: var(--charcoal);
}

/* ========== FOOTER (from investments-listing) ========== */
footer {
    background: var(--charcoal);
    padding: 4rem 5%;
    text-align: center;
    border-top: 1px solid rgba(194, 174, 146, 0.2);
}

.footer-content {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey);
}

.footer-content a {
    color: var(--grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: var(--gold);
}

/* ========== DISCLAIMER ========== */
.disclaimer-section {
    padding: 4rem 5%;
    background: var(--charcoal-light);
    border-top: 1px solid rgba(194, 174, 146, 0.1);
}

.disclaimer-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: rgba(222, 227, 228, 0.5);
    line-height: 1.9;
    letter-spacing: 0.5px;
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .instruments-grid,
    .risk-grid,
    .investor-profiles {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .deep-dive-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .spectrum-points {
        flex-direction: column;
        gap: 2rem;
    }

    .spectrum-point::before {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .breadcrumb-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    section.content-section {
        padding: 5rem 6%;
    }

    .hero {
        padding: 8rem 6% 6rem;
    }

    .comparison-table-wrapper {
        margin-left: -3%;
        margin-right: -3%;
        padding: 0 1%;
    }
}