/* ===================================
   BOUTIQUE DESIGN - MIRALMONTE CAPITAL
   Sophisticated, Elegant, Refined
   =================================== */

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

:root {
    /* Refined Color Palette */
    --primary-color: #0f1419;
    --secondary-color: #2a3441;
    --accent-gold: #d4af37;
    --accent-gold-light: #e6c961;
    --accent-gold-dark: #b8941f;
    --text-primary: #0f1419;
    --text-secondary: #5a6272;
    --text-tertiary: #8891a0;
    --bg-cream: #faf8f5;
    --bg-off-white: #fcfcfc;
    --border-subtle: #e8e5e0;
    --white: #ffffff;

    /* Smooth Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Crimson Pro', 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--bg-off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

/* Elegant Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--primary-color);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    font-family: 'Crimson Pro', 'Georgia', serif;
    font-size: 1.0625rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    margin: 32px auto 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1875rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-content h2 {
    margin-bottom: 32px;
}

.section-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.9;
}

.large-text {
    font-size: 1.375rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 32px;
    font-style: italic;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* ===================================
   NAVIGATION - REFINED
   =================================== */

.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-menu a {
    font-family: 'Crimson Pro', serif;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

/* ===================================
   HERO SECTION - ELEGANT
   =================================== */

.hero {
    position: relative;
    background: linear-gradient(160deg, #0f1419 0%, #1a2532 50%, #0f1419 100%);
    color: var(--white);
    padding: 180px 0 160px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 48px;
    opacity: 0.92;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 48px;
}

/* ===================================
   BUTTONS - SOPHISTICATED
   =================================== */

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: 'Crimson Pro', serif;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid;
    text-align: center;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-color);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    background-color: var(--accent-gold-light);
    border-color: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===================================
   STATS & CARDS - REFINED
   =================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.stat-card {
    background-color: var(--bg-cream);
    padding: 48px 40px;
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
    position: relative;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 3.75rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.stat-item .stat-label {
    color: rgba(255,255,255,0.85);
}

/* ===================================
   FOCUS CARDS - BOUTIQUE
   =================================== */

.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.focus-card {
    background-color: var(--white);
    padding: 56px 48px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
    position: relative;
}

.focus-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.4s ease;
}

.focus-card:hover::after {
    width: 80%;
}

.focus-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: var(--accent-gold);
}

.focus-icon {
    color: var(--accent-gold);
    margin-bottom: 32px;
}

.focus-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.focus-description {
    color: var(--text-secondary);
    line-height: 1.9;
}

/* ===================================
   VALUE CREATION - ELEGANT
   =================================== */

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
}

.value-item {
    position: relative;
    padding-left: 100px;
}

.value-number {
    position: absolute;
    left: 0;
    top: -10px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--accent-gold);
    opacity: 0.15;
    line-height: 1;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.9;
}

/* ===================================
   VALUES SECTION
   =================================== */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.value-card {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(to bottom, var(--bg-cream), var(--white));
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.value-icon {
    color: var(--accent-gold);
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}

.value-card-title {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.value-card-text {
    color: var(--text-secondary);
    line-height: 1.9;
}

/* ===================================
   APPROACH FEATURES
   =================================== */

.approach-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-feature {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background-color: var(--bg-cream);
    border-left: 2px solid var(--accent-gold);
    transition: var(--transition-smooth);
}

.approach-feature:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.approach-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.125rem;
}

.approach-feature h4 {
    font-size: 1.1875rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.approach-feature p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===================================
   INVESTMENT CRITERIA
   =================================== */

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.criteria-card {
    background-color: var(--white);
    padding: 48px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.criteria-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--accent-gold);
}

.criteria-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--accent-gold);
}

.criteria-list {
    list-style: none;
}

.criteria-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.criteria-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 600;
}

/* ===================================
   TIMELINE - REFINED
   =================================== */

.framework-timeline {
    position: relative;
    padding-left: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.framework-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 64px;
    padding: 32px;
    background-color: var(--bg-cream);
    border-left: 2px solid var(--accent-gold);
}

.timeline-marker {
    position: absolute;
    left: -80px;
    top: 32px;
    width: 56px;
    height: 56px;
}

.timeline-number {
    width: 56px;
    height: 56px;
    background-color: var(--accent-gold);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.25rem;
}

.timeline-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.timeline-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.9;
}

.timeline-list {
    list-style: none;
    padding-left: 0;
}

.timeline-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

.timeline-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* ===================================
   SECTOR CARDS
   =================================== */

.sector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.sector-card {
    background-color: var(--white);
    padding: 56px 48px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.sector-icon {
    color: var(--accent-gold);
    margin-bottom: 32px;
}

.sector-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sector-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.9;
}

.sector-examples {
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
}

.sector-examples strong {
    color: var(--primary-color);
    font-style: normal;
}

/* ===================================
   PARTNERSHIP STATS
   =================================== */

.partnership-stats {
    background: linear-gradient(to bottom, var(--bg-cream), var(--white));
    padding: 56px 48px;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.partnership-stat {
    text-align: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.partnership-stat:last-child {
    border-bottom: none;
}

.partnership-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.partnership-label {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   PORTFOLIO
   =================================== */

.portfolio-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.portfolio-stat {
    text-align: center;
    padding: 48px 32px;
    background-color: var(--white);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.portfolio-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.portfolio-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.portfolio-stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.portfolio-card {
    background-color: var(--white);
    padding: 48px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.portfolio-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
}

.portfolio-logo {
    flex: 1;
}

.logo-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px 32px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.25rem;
    display: inline-block;
    letter-spacing: 0.05em;
}

.portfolio-sector {
    background-color: var(--bg-cream);
    color: var(--text-secondary);
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: 1px solid var(--border-subtle);
}

.portfolio-company-name {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.portfolio-description {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.9;
}

.portfolio-highlights {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.highlight-label {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
}

.highlight-value {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.0625rem;
}

/* ===================================
   SUCCESS STORIES
   =================================== */

.success-stories {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.success-story {
    background-color: var(--white);
    padding: 56px;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.success-story:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.success-story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.success-story-title {
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--primary-color);
}

.success-story-tag {
    background-color: var(--bg-cream);
    color: var(--text-secondary);
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: 1px solid var(--border-subtle);
}

.success-story-description {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 32px;
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
}

.success-metric {
    text-align: center;
}

.metric-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===================================
   SECTOR DISTRIBUTION
   =================================== */

.sector-distribution {
    max-width: 800px;
    margin: 0 auto;
}

.distribution-item {
    display: grid;
    grid-template-columns: 220px 1fr 100px;
    gap: 24px;
    align-items: center;
    margin-bottom: 32px;
}

.distribution-label {
    font-weight: 600;
    color: var(--primary-color);
}

.distribution-bar {
    height: 40px;
    background-color: var(--bg-cream);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.distribution-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold-dark), var(--accent-gold), var(--accent-gold-light));
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.distribution-value {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--primary-color);
    text-align: right;
}

/* ===================================
   TEAM
   =================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
}

.team-card {
    display: flex;
    gap: 32px;
    padding: 40px;
    background-color: var(--white);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}

.team-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.team-photo {
    flex-shrink: 0;
}

.photo-placeholder {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.team-info {
    flex: 1;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.team-title {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.team-bio {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 16px;
    font-size: 1rem;
}

.team-expertise {
    font-size: 1rem;
    color: var(--text-secondary);
}

.team-expertise strong {
    color: var(--primary-color);
}

/* ===================================
   OPERATING PARTNERS
   =================================== */

.operating-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.operating-partner-card {
    background-color: var(--white);
    padding: 40px;
    border: 1px solid var(--border-subtle);
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.operating-partner-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.op-photo .photo-placeholder {
    width: 100px;
    height: 100px;
    font-size: 1.375rem;
}

.op-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.op-title {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.op-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* ===================================
   ADVISORS
   =================================== */

.advisors-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.advisor-item {
    background-color: var(--white);
    padding: 40px 48px;
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--accent-gold);
    transition: var(--transition-smooth);
}

.advisor-item:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    transform: translateX(6px);
}

.advisor-info {
    margin-bottom: 16px;
}

.advisor-name {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.advisor-title {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.advisor-description {
    color: var(--text-secondary);
    line-height: 1.9;
}

/* ===================================
   JOIN TEAM
   =================================== */

.join-team-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(to bottom, var(--bg-cream), var(--white));
    border: 1px solid var(--border-subtle);
}

.join-team-content .section-title {
    margin-bottom: 32px;
}

.join-team-content .section-text {
    margin-bottom: 24px;
}

.join-team-content .btn {
    margin-top: 24px;
}

/* ===================================
   CONTACT
   =================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.contact-form-wrapper h2 {
    margin-bottom: 20px;
}

.contact-form {
    margin-top: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-subtle);
    font-family: 'Crimson Pro', serif;
    font-size: 1rem;
    color: var(--primary-color);
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-note {
    margin-top: 16px;
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    font-style: italic;
}

.contact-info-section {
    margin-bottom: 48px;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-detail p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.contact-detail a {
    color: var(--text-secondary);
}

.contact-detail a:hover {
    color: var(--accent-gold);
}

.office-hours {
    background-color: var(--bg-cream);
    padding: 24px;
    border: 1px solid var(--border-subtle);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 1rem;
}

.hours-row:not(:last-child) {
    border-bottom: 1px solid var(--border-subtle);
}

.hours-row span:first-child {
    color: var(--text-secondary);
}

.hours-row span:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

.specific-contacts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.specific-contact strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 6px;
    font-weight: 600;
}

.specific-contact a {
    color: var(--text-secondary);
    font-size: 1rem;
}

.specific-contact a:hover {
    color: var(--accent-gold);
}

/* ===================================
   MAP SECTION
   =================================== */

.map-section {
    height: 480px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e5e0 0%, #d4cfc7 100%);
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 20, 25, 0.85), rgba(15, 20, 25, 0.92));
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    text-align: center;
    color: var(--white);
}

.map-info h3 {
    font-size: 1.875rem;
    margin-bottom: 12px;
    color: var(--white);
}

.map-info p {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* ===================================
   CTA SECTION - ELEGANT
   =================================== */

.cta-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a2532 50%, #0f1419 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    font-style: italic;
}

/* ===================================
   FOOTER - REFINED
   =================================== */

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 32px;
    border-top: 1px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-text {
    color: rgba(255,255,255,0.75);
    line-height: 1.9;
    font-size: 1rem;
}

.footer-heading {
    font-family: 'Crimson Pro', serif;
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a,
.footer-links li {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9375rem;
}

/* ===================================
   PAGE HEADER - ELEGANT
   =================================== */

.page-header {
    background: linear-gradient(135deg, #0f1419 0%, #1a2532 50%, #0f1419 100%);
    padding: 140px 0 100px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.375rem;
    opacity: 0.9;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.bg-light {
    background-color: var(--bg-cream);
}

.bg-dark {
    background-color: var(--primary-color);
}

.text-white {
    color: var(--white);
}

.text-light {
    color: rgba(255,255,255,0.85);
}

.link-arrow {
    color: var(--accent-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    letter-spacing: 0.02em;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    color: var(--accent-gold-dark);
}

.link-arrow:hover::after {
    transform: translateX(6px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .section {
        padding: 100px 0;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3.25rem;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .focus-grid,
    .value-grid,
    .criteria-grid,
    .sector-grid,
    .portfolio-grid,
    .team-grid,
    .operating-partners-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .portfolio-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .success-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 32px 24px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 100px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1875rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid,
    .stats-row,
    .values-grid,
    .portfolio-stats-grid {
        grid-template-columns: 1fr;
    }

    .framework-timeline {
        padding-left: 60px;
    }

    .framework-timeline::before {
        left: 16px;
    }

    .timeline-marker {
        left: -60px;
    }

    .timeline-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .distribution-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .distribution-value {
        text-align: left;
    }

    .team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .operating-partner-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===================================
   ANIMATIONS - REFINED
   =================================== */

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Subtle entrance animations */
.section > * {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-section,
    .hero-cta {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
}
