@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-primary: #030914;
    --bg-secondary: #060e1d;
    --bg-card: rgba(6, 14, 29, 0.6);
    --bg-nav: rgba(3, 9, 20, 0.85);
    --color-gold: #c5a059;
    --color-gold-hover: #d4af37;
    --color-white: #ffffff;
    --color-offwhite: #f5f5f7;
    --color-muted: #8e8e93;
    --color-border: rgba(197, 160, 89, 0.15);
    --color-border-glow: rgba(197, 160, 89, 0.35);
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--color-offwhite);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Typographical Utilities --- */
h1, h2, h3, h4, .serif-text {
    font-family: var(--font-serif);
    font-weight: 400;
}

.gold-text {
    color: var(--color-gold);
    background: linear-gradient(135deg, #c5a059 0%, #f3d69b 50%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: inline-block;
}

/* --- Scroll Reveal Classes --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Layout Elements --- */
.container {
    max-width: 1700px;
    margin: 0 auto;
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
}

/* --- Button Styling --- */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-offwhite);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.1), transparent);
    transition: var(--transition);
}

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

.btn-outline:hover {
    border-color: var(--color-gold-hover);
    color: var(--color-gold-hover);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.btn-outline .arrow {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.btn-outline:hover .arrow {
    transform: translateX(5px);
}

/* --- Navigation Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transition: var(--transition);
}

header.scrolled .nav-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-white);
}

.logo-icon {
    width: 2.2rem;
    height: 2.2rem;
    margin-right: 0.75rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: var(--color-muted);
    margin-top: 0.2rem;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--color-offwhite);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-gold-hover);
}

.nav-link:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-selector {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.lang-btn {
    color: var(--color-muted);
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.lang-btn.active {
    color: var(--color-gold);
    font-weight: 600;
    pointer-events: none;
}

.lang-btn:hover:not(.active) {
    color: var(--color-white);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.15);
}

.mobile-lang-selector {
    display: inline-flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.mobile-lang-btn {
    color: var(--color-muted);
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.mobile-lang-btn.active {
    color: var(--color-gold);
    font-weight: 600;
}

.mobile-lang-separator {
    color: rgba(255, 255, 255, 0.2);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    width: 40px;
    height: 24px;
    position: relative;
    margin-left: 1rem;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: var(--color-white);
    position: absolute;
    top: 50%;
    left: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-50%);
}

.nav-toggle span:nth-child(2) {
    transform: translateY(-50%);
}

.nav-toggle span:nth-child(3) {
    display: none; /* Hide the third line completely */
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 6rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3, 9, 20, 0.2) 0%, rgba(3, 9, 20, 0.48) 65%, var(--bg-primary) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 680px;
}

.hero h1 {
    font-size: clamp(2rem, 5.5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 2.25rem);
    color: var(--color-muted);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.25;
}

.hero-description {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-solid-gold, .btn-gold-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2.2rem;
    background-color: var(--color-gold);
    border: 1px solid var(--color-gold);
    color: var(--bg-primary);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-solid-gold:hover, .btn-gold-solid:hover {
    background-color: #dfb76c;
    border-color: #dfb76c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25);
    color: var(--bg-primary);
}

.btn-hero-outline, .btn-gold-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2.2rem;
    background: rgba(6, 14, 29, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.45);
    color: var(--color-offwhite);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-hero-outline:hover, .btn-gold-outline:hover {
    background: rgba(197, 160, 89, 0.12);
    border-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* --- Partners Section --- */
.partners {
    padding: 6rem 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.partners-title {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    margin-bottom: 4rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.partner-card {
    text-align: center;
    border-left: 1px solid var(--color-border);
    padding: 0 1rem 1rem 1.5rem;
    transition: var(--transition);
}

.partner-card:first-child {
    border-left: none;
}

.partner-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition);
}

.partner-card:hover .partner-icon {
    transform: translateY(-5px) scale(1.05);
    color: var(--color-gold-hover);
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.4));
}

.partner-name {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.partner-desc {
    font-size: 0.75rem;
    color: var(--color-muted);
    line-height: 1.5;
    font-weight: 300;
}

/* --- Geographic Ecosystem Section --- */
.geo-ecosystem {
    padding: 8rem 0;
    position: relative;
}

.geo-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.85fr;
    gap: 4rem;
    align-items: center;
}

.geo-info h2 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.gold-line {
    width: 32px;
    height: 1.5px;
    background-color: var(--color-gold);
    margin: 1.5rem 0 2rem 0;
}

.geo-lead {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-offwhite);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.03em;
}

.geo-lead p {
    margin-bottom: 0.5rem;
}

.geo-info .btn-outline {
    margin-bottom: 4rem;
    color: var(--color-gold);
    border-color: rgba(197, 160, 89, 0.3);
}

.geo-info .btn-outline:hover {
    color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
}

.geo-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1rem;
    border-top: 1px solid var(--color-border);
    padding-top: 2.5rem;
}

.metric-item {
    text-align: center;
    position: relative;
    padding: 0 0.5rem;
}

.metric-item:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(197, 160, 89, 0.15);
}

.metric-icon {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--color-gold);
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.metric-item:hover .metric-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.3));
}

.metric-title {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.metric-subtitle {
    font-size: 0.68rem;
    color: var(--color-muted);
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Map Styling */
.geo-map-container {
    position: relative;
    width: 100%;
    background-color: #030812;
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 80px rgba(0,0,0,0.85), 0 20px 50px rgba(0,0,0,0.6);
}

.map-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.map-land {
    fill: #040c1a;
    transition: fill 0.5s ease;
}

.map-sea {
    fill: #030812;
}

.map-coastline {
    fill: none;
    stroke: #c5a059;
    stroke-width: 1.2;
}

.map-coastline-glow-outer {
    fill: none;
    stroke: #a67c1e;
    stroke-width: 6;
    opacity: 0.1;
    filter: blur(5px);
}

.map-coastline-glow-inner {
    fill: none;
    stroke: #ffae19;
    stroke-width: 3;
    opacity: 0.25;
    filter: blur(2px);
}

.map-grid-line {
    stroke: rgba(255, 255, 255, 0.015);
    stroke-width: 0.5;
}

.map-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    fill: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    pointer-events: none;
    transition: var(--transition);
}

.map-label.country-label {
    font-size: 10px;
    font-weight: 600;
    fill: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.22em;
}

.map-label.sea-label {
    font-family: var(--font-serif);
    font-size: 13px;
    font-style: italic;
    fill: rgba(43, 91, 142, 0.45);
    letter-spacing: 0.35em;
    font-weight: 300;
}

/* Map Markers */
.map-marker {
    cursor: pointer;
}

.marker-glow-circle {
    fill: url(#marker-orange-glow);
    transition: var(--transition);
    pointer-events: none;
}

.marker-dot {
    fill: #ffffff;
    stroke: #ff9f1a;
    stroke-width: 1.5;
    transition: var(--transition);
}

.marker-pulse {
    fill: none;
    stroke: #ff9f1a;
    stroke-width: 1;
    opacity: 0.7;
    transform-origin: center;
    animation: markerPulse 3s infinite cubic-bezier(0.215, 0.610, 0.355, 1);
    pointer-events: none;
}

@keyframes markerPulse {
    0% {
        r: 3px;
        opacity: 0.9;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        r: 22px;
        opacity: 0;
    }
}

.map-marker:hover .marker-glow-circle {
    transform: scale(1.3);
    opacity: 0.9;
}

.map-marker:hover .marker-dot {
    fill: #ffffcc;
    r: 4.5px;
    stroke-width: 2;
}

.map-marker:hover + .map-label,
.map-marker.active + .map-label {
    fill: var(--color-white);
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.6));
}

/* Coordinates tooltip */
.map-tooltip {
    position: absolute;
    background: rgba(3, 9, 20, 0.95);
    border: 1px solid var(--color-gold);
    padding: 0.6rem 0.9rem;
    border-radius: 2px;
    font-size: 0.68rem;
    font-family: var(--font-sans);
    color: var(--color-offwhite);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -120%);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 15px rgba(197, 160, 89, 0.1);
    white-space: nowrap;
}

.map-tooltip.visible {
    opacity: 1;
    transform: translate(-50%, -135%);
}

.map-tooltip-title {
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.map-tooltip-coords {
    color: var(--color-muted);
}

/* --- Our Approach Section --- */
.approach {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.approach-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.approach-header h2 {
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    margin-top: 0.5rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.approach-card {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.approach-card:hover {
    border-color: var(--color-border-glow);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(197, 160, 89, 0.05);
    transform: translateY(-5px);
}

.card-img-container {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.approach-card:hover .card-img {
    transform: scale(1.06);
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    align-self: flex-start;
}

.approach-card:hover .card-badge {
    background-color: var(--color-gold);
    color: var(--bg-primary);
}

.card-badge svg {
    width: 0.9rem;
    height: 0.9rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.card-text {
    font-size: 0.825rem;
    color: var(--color-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* Platforms Subsection */
.platforms-sub {
    border-top: 1px solid var(--color-border);
    padding-top: 4rem;
}

.platforms-title {
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    margin-bottom: 2.5rem;
}

.platforms-links {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.platform-link {
    text-decoration: none;
    text-align: center;
    display: block;
    transition: var(--transition);
}

.platform-link-name {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.platform-link-desc {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--color-muted);
    font-weight: 300;
    line-height: 1.4;
}

.platform-link:hover .platform-link-name {
    color: var(--color-gold-hover);
    transform: translateY(-2px);
}

/* --- Journal Section --- */
.journal {
    padding: 8rem 0;
    position: relative;
}

.journal-grid {
    display: grid;
    grid-template-columns: 1.15fr 2.85fr;
    gap: 3.5rem;
    align-items: flex-start;
}

.journal-info h2 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.journal-info .btn-outline {
    margin-top: 1rem;
}

/* Horizontal slider/scroll for cards */
.journal-slider-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
    padding-bottom: 1rem;
}

.journal-slider-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.journal-slider {
    display: flex;
    gap: 1.5rem;
}

.journal-card {
    min-width: 250px;
    width: 250px;
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    cursor: pointer;
}

.journal-card:hover {
    border-color: var(--color-border-glow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.journal-card-img-container {
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.journal-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.journal-card:hover .journal-card-img {
    transform: scale(1.05);
}

.journal-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.journal-card-category {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.journal-card-title {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    flex-grow: 1;
}

.journal-card-link {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    margin-top: auto;
}

.journal-card:hover .journal-card-link {
    color: var(--color-gold-hover);
}

.journal-card-link .arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.journal-card:hover .journal-card-link .arrow {
    transform: translateX(4px);
}

/* Journal Footer */
.journal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    margin-top: 4rem;
    padding-top: 2rem;
}

.journal-footer-text {
    font-size: 0.85rem;
    color: var(--color-muted);
    font-weight: 300;
}

.journal-footer .btn-outline {
    padding: 0.6rem 1.4rem;
}

/* --- Call To Action Section --- */
.cta-banner {
    padding: 10rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(3, 9, 20, 0.8) 0%, rgba(3, 9, 20, 0.4) 60%, rgba(3, 9, 20, 0.8) 100%);
    z-index: 1;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 600px;
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.cta-banner h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.cta-desc {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

/* --- Footer --- */
footer {
    background-color: #02060e;
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--color-border);
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand-desc {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 280px;
    font-weight: 300;
}

.copyright-text {
    font-size: 0.75rem;
    color: var(--color-muted);
    font-weight: 300;
}

.footer-column-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
    font-weight: 300;
}

.footer-link:hover {
    color: var(--color-gold-hover);
    padding-left: 4px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    font-size: 0.8rem;
    color: var(--color-muted);
    font-weight: 300;
    transition: var(--transition);
    text-decoration: none;
}

.footer-contact-item.link:hover {
    color: var(--color-gold-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    font-size: 0.7rem;
    transition: var(--transition);
}

.footer-bottom-link:hover {
    color: var(--color-gold-hover);
}

/* --- Mobile Menu Drawer --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(3, 8, 17, 0.97);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    touch-action: manipulation;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
    padding: 2rem 1rem;
    width: 100%;
    max-width: 480px;
}

.mobile-nav-item {
    margin: 1.1rem 0;
    transform: translateY(24px);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
    will-change: transform, opacity;
}

.mobile-nav-overlay.active .mobile-nav-item {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-overlay.active .mobile-nav-item:nth-child(1) { transition-delay: 0.08s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(2) { transition-delay: 0.12s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(3) { transition-delay: 0.16s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(5) { transition-delay: 0.24s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(6) { transition-delay: 0.28s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(7) { transition-delay: 0.32s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(8) { transition-delay: 0.36s; }
.mobile-nav-overlay.active .mobile-nav-item:nth-child(9) { transition-delay: 0.40s; }

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 4.5vw, 1.85rem);
    color: var(--color-offwhite);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.5rem 1.2rem;
    width: 100%;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--color-gold);
}

.mobile-nav-link:active {
    transform: scale(0.96);
    color: var(--color-gold);
}

/* Hamburger animations */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    .partner-card {
        border-left: none;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 2rem;
    }
    .partner-card:nth-child(4),
    .partner-card:nth-child(5),
    .partner-card:nth-child(6) {
        border-bottom: none;
    }
    .geo-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .geo-map-container {
        max-width: 750px;
        margin: 0 auto;
        width: 100%;
    }
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .platforms-links {
        grid-template-columns: repeat(3, 1fr);
    }
    .journal-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .journal-info {
        max-width: 600px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
    .nav-menu {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
    .hero {
        padding-top: 5rem;
        text-align: left;
        background-image: url('images/heroresponsive.png') !important;
    }
    .hero-v2 {
        background-image: url('images/hero2responsive.jpeg') !important;
    }
    .hero-content {
        margin: 0;
        text-align: left;
    }
    .hero-title {
        font-size: clamp(2.4rem, 8.5vw, 3.8rem) !important;
        text-align: left;
        line-height: 1.12;
    }
    .hero-description {
        margin: 0 0 2.5rem;
        text-align: left;
    }
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partner-card:nth-child(3),
    .partner-card:nth-child(4) {
        border-bottom: 1px solid var(--color-border);
    }
    .geo-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .approach-grid {
        grid-template-columns: 1fr;
    }
    .platforms-links {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    .partner-card {
        border-bottom: 1px solid var(--color-border);
    }
    .partner-card:last-child {
        border-bottom: none;
    }
    .geo-metrics {
        grid-template-columns: 1fr;
    }
    .platforms-links {
        grid-template-columns: 1fr;
    }
}

/* --- Sticky VIP CTA --- */
.sticky-vip-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 80px);
    width: calc(100% - 3rem);
    max-width: 420px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
}

.sticky-vip-cta.visible {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

.vip-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.1rem;
    background: rgba(3, 9, 20, 0.85);
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 20px rgba(197, 160, 89, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: var(--transition);
}

.vip-cta-btn:hover, .vip-cta-btn:active {
    background: var(--color-gold);
    color: var(--bg-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.7), 0 0 25px rgba(197, 160, 89, 0.4);
}

.vip-cta-btn .arrow {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.vip-cta-btn:hover .arrow {
    transform: translateX(5px);
}

/* Fluid spacing and scale bases for smaller viewports */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    html {
        font-size: 13px;
    }
}

/* Mobile Navbar Overrides */
@media (max-width: 768px) {
    .sticky-vip-cta {
        display: block;
    }
    
    .logo {
        max-width: 70%;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
    }
    
    .logo-icon {
        width: 2.2rem;
        height: 2.2rem;
        flex-shrink: 0;
    }

    .logo-title {
        font-size: clamp(1rem, 4vw, 1.2rem);
        letter-spacing: 0.05em;
        white-space: nowrap;
    }
    
    .logo-subtitle {
        display: block;
        font-size: 0.55rem;
        letter-spacing: 0.08em;
        margin-top: 0.2rem;
        white-space: normal;
        line-height: 1.3;
        max-width: 140px;
        color: var(--color-muted);
    }
    
    .header-right {
        gap: 0.5rem;
        flex-shrink: 0;
    }
    
    .lang-selector {
        padding: 0.5rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }
    
    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Make mobile menu fullscreen app-like */
    .mobile-nav-overlay {
        background-color: rgba(3, 9, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}

/* --- Philosophy Page Specific Styles --- */
.philosophy-hero {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.philosophy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3, 9, 20, 0.22) 0%, rgba(3, 9, 20, 0.5) 70%, var(--bg-primary) 100%);
    z-index: 1;
}

.philosophy-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.breadcrumbs {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs a {
    color: var(--color-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.15);
}

.philosophy-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.philosophy-hero .hero-subtitle {
    margin-bottom: 2.5rem;
    max-width: 750px;
}

.philosophy-hero .hero-description {
    max-width: 600px;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* What Guides Us Section */
.guides {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
}

.guides-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.guides-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-top: 0.5rem;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.guide-item {
    display: flex;
    flex-direction: column;
    padding-right: 1.5rem;
}

.guide-item:not(:last-child) {
    border-right: 1px solid rgba(197, 160, 89, 0.12);
}

.guide-icon {
    color: var(--color-gold);
    width: 36px;
    height: 36px;
    margin-bottom: 1.5rem;
}

.guide-icon svg {
    width: 100%;
    height: 100%;
}

.guide-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.guide-text {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Quote/Split Section */
.quote-split-section {
    background-color: var(--bg-primary);
    padding: 2rem 0;
}

.quote-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.quote-split-left {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-image: radial-gradient(circle at 10% 10%, rgba(197, 160, 89, 0.03) 0%, transparent 80%);
}

.quote-mark {
    font-family: var(--font-serif);
    font-size: 6rem;
    color: var(--color-gold);
    opacity: 0.15;
    line-height: 1;
    position: absolute;
    top: 2rem;
    left: 4.5rem;
    pointer-events: none;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.35;
    color: var(--color-offwhite);
    z-index: 2;
}

.quote-text span {
    display: block;
    margin-top: 1rem;
}

.quote-split-right {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
}

/* Our Commitment Section */
.commitment {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--color-border);
}

.commitment-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.commitment-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-top: 0.5rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.commitment-item {
    display: flex;
    flex-direction: column;
    padding-right: 1.5rem;
}

.commitment-item:not(:last-child) {
    border-right: 1px solid rgba(197, 160, 89, 0.12);
}

.commitment-icon {
    color: var(--color-gold);
    width: 36px;
    height: 36px;
    margin-bottom: 1.5rem;
}

.commitment-icon svg {
    width: 100%;
    height: 100%;
}

.commitment-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.commitment-text {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Responsive adjustments for Philosophy sections */
@media (max-width: 1024px) {
    .guides-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2rem;
    }
    .guide-item:nth-child(3) {
        border-right: none;
    }
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    .commitment-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .philosophy-hero {
        padding-top: 6rem;
        min-height: auto;
    }
    .guides {
        padding: 5rem 0;
    }
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .guide-item {
        padding-right: 0;
        border-right: none !important;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
        padding-bottom: 2rem;
    }
    .guide-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .quote-split-grid {
        grid-template-columns: 1fr;
    }
    .quote-split-left {
        padding: 3rem 2rem;
    }
    .quote-mark {
        left: 1.5rem;
        top: 1rem;
    }
    .quote-split-right {
        min-height: 250px;
    }
    
    .commitment {
        padding: 5rem 0;
    }
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .commitment-item {
        padding-right: 0;
        border-right: none !important;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
        padding-bottom: 2rem;
    }
    .commitment-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* Left align philosophy hero text on tablets & mobiles */
@media (max-width: 1024px) {
    .philosophy-hero {
        text-align: left !important;
    }
    .philosophy-hero .hero-content {
        margin: 0 !important;
    }
    .philosophy-hero .hero-description {
        margin: 0 0 1.5rem 0 !important;
    }
    .breadcrumbs {
        justify-content: flex-start !important;
    }
}

/* --- Approach Page Specific Styles --- */
.methodology {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
}

.meth-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem;
    margin-top: 4rem;
}

.meth-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.meth-num {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-gold);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.meth-icon {
    color: var(--color-gold);
    width: 36px;
    height: 36px;
    margin: 1rem 0 1.5rem 0;
}

.meth-icon svg {
    width: 100%;
    height: 100%;
}

.meth-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.meth-subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.meth-text {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.meth-arrow {
    position: absolute;
    right: -2rem;
    top: 55px;
    color: var(--color-gold);
    opacity: 0.25;
    font-size: 1.5rem;
}

/* Process Section */
.process-road {
    padding: 8rem 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

.process-line-wrapper {
    position: relative;
    margin: 6rem 0 2rem;
}

.process-track {
    position: absolute;
    top: 30px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.05) 0%, rgba(197, 160, 89, 0.3) 50%, rgba(197, 160, 89, 0.05) 100%);
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.process-node {
    text-align: center;
}

.process-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--color-gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.05);
    transition: var(--transition);
}

.process-circle svg {
    width: 20px;
    height: 20px;
}

.process-node:hover .process-circle {
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
    transform: scale(1.05);
}

.process-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.process-desc {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* Principles */
.principles {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.principle-item {
    display: flex;
    flex-direction: column;
    padding-right: 1.5rem;
}

.principle-item:not(:last-child) {
    border-right: 1px solid rgba(197, 160, 89, 0.12);
}

.principle-icon {
    color: var(--color-gold);
    width: 36px;
    height: 36px;
    margin-bottom: 1.5rem;
}

.principle-icon svg {
    width: 100%;
    height: 100%;
}

.principle-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.principle-text {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* What Makes Us Different */
.diff-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--color-border);
}

.diff-layout {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
}

.diff-info {
    position: sticky;
    top: 6rem;
}

.diff-info h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.diff-item {
    display: flex;
    flex-direction: column;
    padding-right: 1rem;
}

.diff-item:not(:last-child) {
    border-right: 1px solid rgba(197, 160, 89, 0.12);
}

.diff-icon {
    color: var(--color-gold);
    width: 36px;
    height: 36px;
    margin-bottom: 1.5rem;
}

.diff-icon svg {
    width: 100%;
    height: 100%;
}

.diff-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.diff-text {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Responsive adjustments for Approach sections */
@media (max-width: 1200px) {
    .meth-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    .meth-arrow {
        display: none;
    }
    .principles-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2rem;
    }
    .principle-item:nth-child(3) {
        border-right: none;
    }
    .diff-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .diff-info {
        position: static;
    }
    .diff-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2rem;
    }
    .diff-item {
        border-right: none !important;
    }
}

@media (max-width: 768px) {
    .methodology, .process-road, .principles, .diff-section {
        padding: 5rem 0;
    }
    .meth-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .meth-card {
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
        padding-bottom: 2rem;
    }
    .meth-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    /* Vertical Process Road Timeline */
    .process-line-wrapper {
        margin: 3rem 0 1rem;
    }
    .process-track {
        left: 30px;
        top: 0;
        bottom: 0;
        width: 1px;
        height: 100%;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .process-node {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
    }
    .process-circle {
        margin: 0;
        flex-shrink: 0;
    }
    .process-desc {
        max-width: none;
        margin: 0;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .principle-item {
        padding-right: 0;
        border-right: none !important;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
        padding-bottom: 2rem;
    }
    .principle-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .diff-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .diff-item {
        padding-right: 0;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
        padding-bottom: 2rem;
    }
    .diff-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* --- Partnerships Page Specific Styles --- */
.who-partner {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.who-item {
    display: flex;
    flex-direction: column;
    padding-right: 1.25rem;
}

.who-item:not(:last-child) {
    border-right: 1px solid rgba(197, 160, 89, 0.12);
}

.who-icon {
    color: var(--color-gold);
    width: 36px;
    height: 36px;
    margin-bottom: 1.5rem;
}

.who-icon svg {
    width: 100%;
    height: 100%;
}

.who-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.who-text {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Partnership Models */
.models-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--color-border);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.model-card {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 3rem 2.5rem;
    display: flex;
    gap: 2rem;
    transition: var(--transition);
    height: 100%;
    position: relative;
    cursor: pointer;
}

.model-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 10px 35px rgba(0,0,0,0.5), 0 0 20px rgba(197, 160, 89, 0.1);
    transform: translateY(-5px);
}

.model-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.model-icon-circle svg {
    width: 22px;
    height: 22px;
}

.model-card:hover .model-icon-circle {
    border-color: var(--color-gold);
    background-color: rgba(197, 160, 89, 0.05);
}

.model-content {
    display: flex;
    flex-direction: column;
}

.model-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.model-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.model-text {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.model-link {
    color: var(--color-gold);
    font-size: 1.1rem;
    display: inline-block;
    transition: var(--transition);
}

.model-card:hover .model-link {
    transform: translateX(5px);
    color: var(--color-gold-hover);
}

/* Responsive Overrides for Partnerships */
@media (max-width: 1200px) {
    .who-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2rem;
    }
    .who-item {
        border-right: none !important;
    }
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .who-partner, .models-section {
        padding: 5rem 0;
    }
    .who-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .who-item {
        padding-right: 0;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
        padding-bottom: 2rem;
    }
    .who-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .models-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .model-card {
        padding: 2.5rem 1.75rem;
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* --- Destination Strategy Page Specific Styles --- */
.strat-philosophy {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
}

.strat-phil-layout {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.strat-phil-layout h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
}

.strat-phil-layout .right-p {
    font-size: 1.1rem;
    color: var(--color-muted);
    line-height: 1.7;
}

.strat-phil-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.strat-phil-item {
    display: flex;
    flex-direction: column;
    padding-right: 1.25rem;
}

.strat-phil-item:not(:last-child) {
    border-right: 1px solid rgba(197, 160, 89, 0.12);
}

.strat-phil-icon {
    color: var(--color-gold);
    width: 36px;
    height: 36px;
    margin-bottom: 1.5rem;
}

.strat-phil-icon svg {
    width: 100%;
    height: 100%;
}

.strat-phil-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.strat-phil-text {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Strategy Process */
.strat-process {
    padding: 8rem 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--color-border);
}

.strat-proc-layout {
    display: grid;
    grid-template-columns: 1.8fr 2.2fr;
    gap: 5rem;
    align-items: center;
}

.strat-timeline {
    position: relative;
    padding-left: 4.5rem;
    margin-top: 4rem;
}

.strat-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    border-left: 1px dashed rgba(197, 160, 89, 0.3);
}

.strat-time-item {
    position: relative;
    margin-bottom: 3rem;
}

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

.strat-time-num {
    position: absolute;
    left: -4.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background-color: var(--bg-primary);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.05);
    transition: var(--transition);
}

.strat-time-item:hover .strat-time-num {
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

.strat-time-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.strat-time-desc {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Right Quote Image Card */
.strat-quote-box {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 5rem 4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.strat-quote-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(3, 9, 20, 0.1) 0%, rgba(3, 9, 20, 0.85) 100%);
    z-index: 1;
}

.strat-quote-content {
    position: relative;
    z-index: 2;
}

.strat-quote-content .quote-mark {
    font-family: var(--font-serif);
    font-size: 8rem;
    color: var(--color-gold);
    opacity: 0.15;
    position: absolute;
    top: -4.5rem;
    left: -2rem;
    line-height: 1;
}

.strat-quote-content .quote-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: 2rem;
}

.strat-quote-content .quote-author {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
}

/* Strategy Highlights Banner */
.strat-highlights {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.strat-hl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.strat-hl-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.strat-hl-icon {
    color: var(--color-gold);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.strat-hl-icon svg {
    width: 100%;
    height: 100%;
}

.strat-hl-content {
    display: flex;
    flex-direction: column;
}

.strat-hl-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.strat-hl-text {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.5;
}

/* Bottom Quote */
.strat-bottom-quote {
    padding: 8rem 0;
    background-color: var(--bg-primary);
    text-align: center;
}

.strat-bottom-quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--color-white);
    line-height: 1.4;
    max-width: 1100px;
    margin: 0 auto 2rem auto;
}

.strat-bottom-quote-text .quote-mark {
    color: var(--color-gold);
    opacity: 0.5;
}

.strat-bottom-quote-author {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
}

/* Responsive adjustments for Strategy Page */
@media (max-width: 1200px) {
    .strat-phil-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .strat-phil-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2rem;
    }
    .strat-phil-item {
        border-right: none !important;
    }
    .strat-proc-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .strat-quote-box {
        min-height: 450px;
    }
    .strat-hl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .strat-philosophy, .strat-process, .strat-bottom-quote {
        padding: 5rem 0;
    }
    .strat-phil-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .strat-phil-item {
        padding-right: 0;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
        padding-bottom: 2rem;
    }
    .strat-phil-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .strat-timeline {
        padding-left: 3.5rem;
    }
    .strat-timeline::before {
        left: 17px;
    }
    .strat-time-num {
        left: -3.5rem;
        width: 36px;
        height: 36px;
    }
    .strat-hl-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .strat-quote-box {
        padding: 3rem 2rem;
        min-height: 400px;
    }
    .strat-quote-content .quote-text {
        font-size: 1.5rem;
    }
}

/* --- Destinations Page Specific Styles --- */
.brand-category-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding-bottom: 0.75rem;
}

.brand-category-label svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
}

.brand-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--color-border);
}

.brand-category {
    margin-bottom: 6rem;
}

.brand-category:last-child {
    margin-bottom: 0;
}

.brand-grid {
    display: grid;
    gap: 2rem;
}

.brand-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.brand-grid.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.brand-grid.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.brand-card {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.brand-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(197, 160, 89, 0.05);
}

.brand-card-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--color-border);
}

.brand-card-body {
    padding: 2rem 1.75rem;
    display: flex;
    gap: 1.25rem;
    flex-grow: 1;
}

.brand-card-icon {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.brand-card-icon svg {
    width: 20px;
    height: 20px;
}

.brand-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.brand-card-title {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.brand-card-text {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}

/* Ecosystem Callout Sidebar Widget */
.brand-ecosystem-box {
    background-color: rgba(197, 160, 89, 0.02);
    border: 1px dashed rgba(197, 160, 89, 0.2);
    border-radius: 4px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.brand-ecosystem-icon {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.brand-ecosystem-icon svg {
    width: 32px;
    height: 32px;
}

.brand-ecosystem-box h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.brand-ecosystem-box p {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.brand-ecosystem-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-ecosystem-link:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

/* Stat Highlights for Destinations */
.dest-stats {
    padding: 5rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.dest-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
}

.dest-stat-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.dest-stat-item:not(:last-child) {
    border-right: 1px solid rgba(197, 160, 89, 0.12);
    padding-right: 1.25rem;
}

.dest-stat-icon {
    color: var(--color-gold);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.dest-stat-icon svg {
    width: 100%;
    height: 100%;
}

.dest-stat-content {
    display: flex;
    flex-direction: column;
}

.dest-stat-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.dest-stat-text {
    font-size: 0.75rem;
    color: var(--color-muted);
    line-height: 1.4;
}

/* Responsive adjustments for Destinations Page */
@media (max-width: 1400px) {
    .brand-grid.grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
    .brand-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .dest-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2rem;
    }
    .dest-stat-item {
        border-right: none !important;
        padding-right: 0;
    }
}

@media (max-width: 1024px) {
    .brand-grid.grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-grid.grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .brand-section {
        padding: 5rem 0;
    }
    .brand-category {
        margin-bottom: 4.5rem;
    }
    .dest-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .brand-grid {
        grid-template-columns: 1fr !important;
    }
    .dest-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Ecosystem Page Specific Styles --- */
.eco-tailored {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.eco-tailored h3 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 4rem;
}

.eco-tailored-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.eco-tailored-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.eco-tailored-item:not(:last-child) {
    border-right: 1px solid rgba(197, 160, 89, 0.12);
    padding-right: 1.5rem;
}

.eco-tailored-icon {
    color: var(--color-gold);
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.eco-tailored-icon svg {
    width: 100%;
    height: 100%;
}

.eco-tailored-content {
    display: flex;
    flex-direction: column;
}

.eco-tailored-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.eco-tailored-text {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.5;
}

/* Ecosystem Model with Wheel */
.eco-model {
    padding: 8rem 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--color-border);
}

.eco-model-layout {
    display: grid;
    grid-template-columns: 1.6fr 2.4fr;
    gap: 5rem;
    align-items: center;
}

.eco-model-layout h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
}

/* CSS Wheel styling */
.eco-wheel-wrapper {
    position: relative;
    width: 520px;
    height: 520px;
    margin: 0 auto;
}

.eco-wheel-circle {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    top: 70px;
    left: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.eco-wheel-center {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1.5px solid var(--color-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.25rem;
    box-shadow: 0 0 30px rgba(197,160,89,0.15);
}

.eco-wheel-center svg {
    width: 30px;
    height: 30px;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.eco-wheel-node {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition);
    z-index: 6;
    cursor: pointer;
}

.eco-wheel-node:hover {
    border-color: var(--color-gold);
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.35);
    transform: scale(1.1);
}

.eco-wheel-node svg {
    width: 22px;
    height: 22px;
}

/* Positioning for 520px wrapper */
.node-1 { top: 40px; left: 230px; }  /* 12 o'clock */
.node-2 { top: 135px; left: 395px; } /* 2 o'clock */
.node-3 { top: 325px; left: 395px; } /* 4 o'clock */
.node-4 { top: 420px; left: 230px; } /* 6 o'clock */
.node-5 { top: 325px; left: 65px; }  /* 8 o'clock */
.node-6 { top: 135px; left: 65px; }  /* 10 o'clock */

/* Descriptions */
.eco-wheel-desc {
    position: absolute;
    width: 220px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--color-muted);
}

.eco-wheel-desc h5 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.desc-1 { top: 20px; left: 305px; text-align: left; }
.desc-2 { top: 130px; left: 470px; text-align: left; }
.desc-3 { top: 335px; left: 470px; text-align: left; }
.desc-4 { top: 440px; left: 305px; text-align: left; }
.desc-5 { top: 335px; left: -170px; text-align: right; }
.desc-6 { top: 130px; left: -170px; text-align: right; }

/* The Pillars of Destination Growth */
.eco-pillars {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
}

.eco-pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.eco-pillar-card {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.eco-pillar-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.eco-pillar-img {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.eco-pillar-icon-overlay {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.eco-pillar-icon-overlay svg {
    width: 16px;
    height: 16px;
}

.eco-pillar-body {
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.eco-pillar-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.eco-pillar-text {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}

/* Building the digital future column banner */
.eco-future {
    padding: 8rem 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--color-border);
}

.eco-future-layout {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
}

.eco-future-info h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
}

.eco-future-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.eco-future-item {
    display: flex;
    flex-direction: column;
    padding-right: 1rem;
}

.eco-future-item:not(:last-child) {
    border-right: 1px solid rgba(197, 160, 89, 0.12);
}

.eco-future-icon {
    color: var(--color-gold);
    width: 32px;
    height: 32px;
    margin-bottom: 1.5rem;
}

.eco-future-icon svg {
    width: 100%;
    height: 100%;
}

.eco-future-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.eco-future-text {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.6;
}

/* Responsive adjustments for Ecosystem Page */
@media (max-width: 1400px) {
    .eco-tailored-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    .eco-tailored-item {
        border-right: none !important;
        padding-right: 0;
    }
    .eco-pillars-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    .eco-future-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .eco-future-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    .eco-future-item {
        border-right: none !important;
        padding-right: 0;
    }
}

@media (max-width: 1200px) {
    .eco-model-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    /* Transform wheel diagram to list on medium viewports */
    .eco-wheel-wrapper {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .eco-wheel-circle {
        display: none;
    }
    
    .eco-wheel-node {
        position: static;
        margin: 0 auto;
    }
    
    .eco-wheel-desc {
        position: static;
        width: 100%;
        text-align: center !important;
        max-width: 450px;
        margin: -1.5rem auto 1rem auto;
    }
}

@media (max-width: 768px) {
    .eco-tailored, .eco-model, .eco-pillars, .eco-future {
        padding: 5rem 0;
    }
    .eco-tailored-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .eco-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .eco-future-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .eco-pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Insights Page Specific Styles --- */
.ins-featured-report {
    padding: 8rem 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--color-border);
}

.ins-featured-box {
    background-color: var(--bg-card);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 4px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.ins-featured-box::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.ins-featured-book {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ins-featured-book img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.5), -2px 0 5px rgba(255, 255, 255, 0.1) inset;
    transition: var(--transition);
}

.ins-featured-book img:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: 15px 25px 35px rgba(0, 0, 0, 0.6);
}

.ins-featured-info {
    display: flex;
    flex-direction: column;
}

.ins-featured-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.ins-featured-info h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.ins-featured-info p {
    font-size: 0.92rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Featured Insights Grid */
.ins-featured-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
}

.ins-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.ins-section-header h2 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin: 0;
}

.ins-view-all {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
}

.ins-view-all:hover {
    color: var(--color-white);
}

.ins-featured-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.ins-insight-card {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.ins-insight-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.ins-insight-img {
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--color-border);
}

.ins-insight-body {
    padding: 1.75rem 1.25rem 2.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ins-insight-category {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.ins-insight-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.ins-insight-text {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
}

.ins-insight-arrow {
    position: absolute;
    bottom: 1rem;
    right: 1.25rem;
    color: var(--color-gold);
    font-size: 0.85rem;
    transition: var(--transition);
}

.ins-insight-card:hover .ins-insight-arrow {
    transform: translateX(4px);
    color: var(--color-white);
}

/* Insights by Theme (Sand / Cream Background) */
.ins-themes {
    padding: 8rem 0;
    background-color: #f7f4ed;
    color: #1c2b38;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.ins-themes h2 {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1c2b38;
    text-align: center;
    margin-bottom: 4rem;
}

.ins-themes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.ins-theme-card {
    background-color: var(--color-white);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.ins-theme-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 10px 25px rgba(28, 43, 56, 0.08);
    transform: translateY(-3px);
}

.ins-theme-icon {
    color: var(--color-gold);
    width: 28px;
    height: 28px;
    margin-bottom: 1.25rem;
}

.ins-theme-icon svg {
    width: 100%;
    height: 100%;
}

.ins-theme-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1c2b38;
    margin-bottom: 0.75rem;
}

.ins-theme-text {
    font-size: 0.8rem;
    color: #636d75;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.ins-theme-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
}

.ins-theme-link:hover {
    color: #1c2b38;
}

/* Responsive adjustments for Insights Page */
@media (max-width: 1400px) {
    .ins-featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .ins-themes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .ins-featured-box {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }
    .ins-featured-book img {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .ins-featured-report, .ins-featured-section, .ins-themes {
        padding: 5rem 0;
    }
    .ins-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ins-themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* --- Contact Page Specific Styles --- */
.con-form-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--color-border);
}

.con-form-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.con-form-container {
    display: flex;
    flex-direction: column;
}

.con-form-container h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.con-form-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 1.5px;
    background-color: var(--color-gold);
}

.con-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.con-input-group {
    margin-bottom: 1.5rem;
}

.con-form-control {
    width: 100%;
    background-color: rgba(28, 43, 56, 0.2);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 4px;
    padding: 1.1rem 1.25rem;
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    transition: var(--transition);
}

.con-form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.1);
}

textarea.con-form-control {
    min-height: 150px;
    resize: vertical;
}

.con-form-note {
    font-size: 0.78rem;
    color: var(--color-muted);
    font-style: italic;
    margin-top: 1rem;
}

.con-form-status {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    font-size: 0.88rem;
    line-height: 1.5;
    transition: var(--transition);
}

.con-form-status.success {
    background-color: rgba(46, 125, 50, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #86efac;
}

.con-form-status.error {
    background-color: rgba(211, 47, 47, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

/* Right side content */
.con-side-content {
    display: flex;
    flex-direction: column;
}

.con-side-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.con-side-content p {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.con-side-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Get in touch / regional presence */
.con-presence-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
}

.con-presence-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
}

.con-touch-info h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.con-touch-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.con-touch-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.con-touch-icon {
    color: var(--color-gold);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.con-touch-icon svg {
    width: 100%;
    height: 100%;
}

.con-touch-body {
    display: flex;
    flex-direction: column;
}

.con-touch-label {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-white);
    margin-bottom: 0.25rem;
}

.con-touch-value {
    font-size: 0.88rem;
    color: var(--color-muted);
    text-decoration: none;
    transition: var(--transition);
}

a.con-touch-value:hover {
    color: var(--color-gold);
}

/* Regional offices presence */
.con-presence-offices h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    text-align: center;
}

.con-offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.con-office-card {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    transition: var(--transition);
}

.con-office-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.con-office-img {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--color-border);
}

/* Regional flags built in CSS */
.con-flag,
.con-flag-img {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    border-radius: 50% !important;
    border: 2px solid #ffffff !important;
    overflow: hidden !important;
    object-fit: cover !important;
    object-position: center !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4) !important;
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    z-index: 5 !important;
    display: block !important;
}

.flag-hr {
    background: linear-gradient(to bottom, #ff0000 0 33.33%, #ffffff 33.33% 66.66%, #171796 66.66% 100%);
}

.flag-fr {
    background: linear-gradient(to right, #0055a4 0 33.33%, #ffffff 33.33% 66.66%, #ef4135 66.66% 100%);
}

.con-office-body {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.con-office-city {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.con-office-text {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.con-office-phone {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    transition: var(--transition);
}

.con-office-phone:hover {
    color: var(--color-gold);
}

/* Banner call to action */
.con-footer-banner {
    padding: 5rem 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.con-footer-box {
    border: 1px dashed rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(197, 160, 89, 0.01);
}

.con-footer-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-white);
    max-width: 600px;
    line-height: 1.4;
}

/* Responsive adjustments for Contact Page */
@media (max-width: 1200px) {
    .con-form-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .con-presence-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .con-form-section, .con-presence-section {
        padding: 5rem 0;
    }
    .con-offices-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .con-footer-box {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2.5rem;
    }
}


/* --- Journal Page Specific Styles --- */
.jou-filters-container {
    border-bottom: 1px solid var(--color-border);
    background-color: var(--bg-secondary);
    padding: 1.5rem 0;
}

.jou-filters-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jou-filter-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.jou-filter-link:hover, .jou-filter-link.active {
    color: var(--color-gold);
}

.jou-filter-link svg {
    width: 14px;
    height: 14px;
}

/* Latest Articles Meta overlay */
.jou-latest-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
}

.jou-latest-tag {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold);
}

/* Explore Dark Themes Grid */
.jou-themes-section {
    padding: 8rem 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--color-border);
}

.jou-themes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.jou-theme-card {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.jou-theme-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.jou-theme-icon {
    color: var(--color-gold);
    width: 28px;
    height: 28px;
    margin-bottom: 1.25rem;
}

.jou-theme-icon svg {
    width: 100%;
    height: 100%;
}

.jou-theme-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.jou-theme-text {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.jou-theme-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
}

.jou-theme-link:hover {
    color: var(--color-white);
}

/* Our Annual Publications */
.jou-pubs-section {
    padding: 8rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--color-border);
}

.jou-pubs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.jou-pub-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.jou-pub-cover {
    width: 80px;
    height: 110px;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    box-shadow: 5px 8px 15px rgba(0,0,0,0.4);
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.05);
}

.jou-pub-info {
    display: flex;
    flex-direction: column;
}

.jou-pub-title {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.jou-pub-desc {
    font-size: 0.78rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.jou-pub-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.jou-pub-link:hover {
    color: var(--color-white);
}

/* Responsive adjustments for Journal Page */
@media (max-width: 1400px) {
    .jou-themes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .jou-pubs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .jou-filters-list {
        gap: 1.5rem 2rem;
    }
    .jou-themes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .jou-pubs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .jou-themes-grid {
        grid-template-columns: 1fr;
    }
    .jou-pubs-grid {
        grid-template-columns: 1fr;
    }
}



/* --- Article / Insight Page Layout --- */
.article-hero {
    position: relative;
    padding-top: 180px; /* Space for nav */
    padding-bottom: 80px;
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3, 9, 20, 0.2) 0%, rgba(3, 9, 20, 0.5) 50%, rgba(3, 9, 20, 0.9) 100%);
    pointer-events: none;
}

.article-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.article-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.article-category-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.article-category {
    color: var(--color-gold);
}

.article-date, .article-read-time {
    color: var(--color-muted);
}

.article-category-info span.separator {
    color: var(--color-border-glow);
}

.article-back-link {
    color: var(--color-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.article-back-link:hover {
    color: var(--color-white);
}

.article-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.article-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    max-width: 800px;
    font-style: italic;
    line-height: 1.3;
}

.article-intro {
    font-size: 1.1rem;
    color: var(--color-offwhite);
    max-width: 700px;
    line-height: 1.6;
}

/* --- Article Content Layout --- */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    padding: 4rem 0 8rem 0;
    align-items: start;
}

/* --- Main Content --- */
.article-main-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.article-exec-summary-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.article-exec-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-exec-summary h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.article-exec-summary p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.article-quote {
    position: relative;
    padding-left: 2rem;
}

.article-quote::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--color-gold);
    line-height: 1;
    opacity: 0.8;
}

.article-quote blockquote {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 768px) {
    .article-quote blockquote {
        font-size: 1.6rem;
    }
    .article-quote::before {
        font-size: 4rem;
        top: -15px;
        left: 0px;
    }
    .article-quote {
        padding-left: 2.5rem;
    }
}

/* Sections */
.article-section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-section-title .section-number {
    color: var(--color-gold);
    font-weight: 300;
}

.article-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.article-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.article-text-block p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.article-text-block p:last-child {
    margin-bottom: 0;
}

/* Values Grid */
.article-values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
}

.article-value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.article-value-icon {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.article-value-title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.article-value-desc {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.4;
}

/* Implications List */
.article-implications-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.article-implications-list li {
    position: relative;
    padding-left: 2rem;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.article-implications-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold);
    font-family: var(--font-sans);
}

/* Conclusion */
.article-conclusion {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.article-conclusion-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.article-conclusion-icon svg {
    width: 100%;
    height: 100%;
}

.article-conclusion-text h4 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.article-conclusion-text p {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Sidebar --- */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.sidebar-widget {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.sidebar-widget:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

/* Takeaways */
.takeaways-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.takeaway-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.takeaway-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.takeaway-text {
    font-size: 0.85rem;
    color: var(--color-offwhite);
    line-height: 1.4;
}

/* Related Insights */
.related-insights-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-insight-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.related-insight-item:hover .related-insight-title {
    color: var(--color-gold);
}

.related-insight-img {
    width: 80px;
    height: 60px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-insight-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.related-insight-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-white);
    line-height: 1.2;
    transition: var(--transition);
}

.related-insight-category {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

/* Featured Report */
.featured-report-widget {
    position: relative;
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.featured-report-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.featured-report-widget:hover .featured-report-bg {
    opacity: 0.4;
}

.featured-report-widget > * {
    position: relative;
    z-index: 1;
}

.featured-report-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-report-desc {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.featured-report-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    transition: var(--transition);
    align-self: flex-start;
}

.featured-report-btn:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--color-white);
    border-color: var(--color-gold);
}

/* Article 2 Specific Sidebar Aliases */
.related-articles-list { display: flex; flex-direction: column; gap: 1.5rem; }
.related-article-card { display: flex; gap: 1rem; align-items: center; text-decoration: none; transition: var(--transition); }
.related-article-card:hover .related-title { color: var(--color-gold); }
.related-img { width: 80px; height: 60px; border-radius: 2px; background-size: cover; background-position: center; flex-shrink: 0; }
.related-content { display: flex; flex-direction: column; gap: 0.3rem; }
.related-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--color-white); line-height: 1.2; transition: var(--transition); margin: 0; }
.related-category { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-gold); }
.related-type { font-family: var(--font-sans); font-size: 0.6rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.sidebar-cta-widget { padding: 2rem; border: 1px solid var(--color-border); border-radius: 4px; display: flex; flex-direction: column; }
.sidebar-cta-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--color-white); margin-bottom: 1rem; line-height: 1.2; text-transform: none; }
.sidebar-cta-text { font-size: 0.85rem; color: var(--color-muted); margin-bottom: 2rem; line-height: 1.5; }
.sidebar-cta-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-gold); text-decoration: none; padding: 0.8rem 1.2rem; border: 1px solid var(--color-border); border-radius: 2px; transition: var(--transition); align-self: flex-start; }
.sidebar-cta-btn:hover { background: rgba(197, 160, 89, 0.1); color: var(--color-white); border-color: var(--color-gold); }

/* Responsive Article */
@media (max-width: 1200px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .article-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .featured-report-widget {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .article-exec-summary-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-grid-2col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-values-grid .article-value-item:last-child {
        grid-column: 1 / -1;
    }
    
    .article-sidebar {
        grid-template-columns: 1fr;
    }
    
    .article-meta-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .article-title {
        font-size: 2.2rem;
    }
    
    .article-subtitle {
        font-size: 1.2rem;
    }
    
    .article-values-grid {
        grid-template-columns: 1fr;
    }
    
    .article-conclusion {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* --- Report Page Styles --- */
.report-hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 60px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-primary);
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
}

.report-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3, 9, 20, 0.7) 0%, rgba(3, 9, 20, 0.35) 40%, rgba(3, 9, 20, 0.1) 100%),
                linear-gradient(to top, rgba(3, 9, 20, 0.85) 0%, transparent 40%);
    pointer-events: none;
}

.report-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: 0;
}

.report-hero-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: block;
}

.report-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.report-hero-title span {
    color: var(--color-gold);
}

.report-hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-offwhite);
    margin-bottom: 2rem;
    max-width: 600px;
}

.report-hero-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--color-muted);
}

.report-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.report-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(197, 160, 89, 0.05);
}

.report-download-btn:hover {
    background: var(--color-gold);
    color: var(--bg-primary);
}

/* Report Content Grid */
.report-content {
    padding: 4rem 0 8rem 0;
}

.report-grid-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.report-box {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 2.5rem;
}

.report-box-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

/* Row 1 */
.report-row-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.exec-text {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pillar-icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.pillar-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.pillar-desc {
    font-size: 0.7rem;
    color: var(--color-muted);
    line-height: 1.3;
}

.top-10-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.top-10-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-10-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.top-10-rank {
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-weight: 700;
    width: 20px;
}

.top-10-name {
    flex-grow: 1;
    color: var(--color-offwhite);
    font-size: 0.9rem;
}

.top-10-score {
    color: var(--color-white);
    font-family: var(--font-sans);
    font-weight: 700;
}

.top-10-note {
    font-size: 0.8rem;
    color: var(--color-muted);
}

/* Row 2 */
.report-row-2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
}

.map-container {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
}

.map-legend {
    position: absolute;
    right: 2rem;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-text {
    display: flex;
    flex-direction: column;
}

.legend-score {
    font-size: 0.8rem;
    color: var(--color-white);
}

.legend-label {
    font-size: 0.7rem;
    color: var(--color-muted);
}

.radar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    position: relative;
}

.radar-chart {
    position: relative;
    width: 300px;
    height: 300px;
}

.radar-chart svg {
    width: 100%;
    height: 100%;
}

.radar-label {
    position: absolute;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: var(--color-offwhite);
    text-align: center;
    width: 100px;
    transform: translate(-50%, -50%);
}

.radar-label .score {
    color: var(--color-gold);
    font-weight: 700;
    display: block;
}

/* Row 3 */
.report-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.findings-list, .trends-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.finding-item, .trend-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.finding-icon, .trend-icon {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.finding-text, .trend-text {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.5;
}

/* Row 4 Quote */
.report-quote-box {
    position: relative;
    padding: 4rem;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
}

.report-quote-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(3, 9, 20, 0.8) 50%, rgba(3, 9, 20, 1) 100%);
    pointer-events: none;
}

.report-quote-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.report-quote-content blockquote {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.report-quote-author {
    color: var(--color-gold);
    font-size: 0.9rem;
}

/* Row 5 CTA */
.report-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem;
}

.report-cta-left {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.report-cta-icon {
    width: 48px;
    height: 48px;
    color: var(--color-gold);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.report-cta-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.report-cta-desc {
    color: var(--color-offwhite);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 500px;
}

/* Responsive Report */
@media (max-width: 1200px) {
    .report-row-1, .report-row-2, .report-row-3 {
        grid-template-columns: 1fr;
    }
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1rem;
    }
    .map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .report-quote-box {
        justify-content: flex-start;
        padding: 3rem 2rem;
    }
    .report-quote-box::before {
        background: rgba(3, 9, 20, 0.7);
    }
    .report-cta-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .report-hero-title {
        font-size: 2.5rem;
    }
}

/* --- Outlook Page Styles --- */
.outlook-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
}

.outlook-stat-item {
    text-align: center;
    border-right: 1px solid var(--color-border);
    padding: 0 1rem;
}

.outlook-stat-item:last-child {
    border-right: none;
}

.outlook-stat-icon {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.outlook-stat-value {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-offwhite);
    margin-bottom: 0.5rem;
}

.outlook-stat-desc {
    font-size: 0.75rem;
    color: var(--color-muted);
    line-height: 1.4;
}

.outlook-trends-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.outlook-trend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.outlook-trend-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.outlook-trend-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-offwhite);
}

.outlook-trend-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    margin: 0.5rem 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.outlook-trend-desc {
    font-size: 0.65rem;
    color: var(--color-muted);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.outlook-trend-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 2px;
}

.outlook-bottom-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
}

.outlook-opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.outlook-opp-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.outlook-opp-icon {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.outlook-opp-content h4 {
    color: var(--color-gold);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.outlook-opp-content p {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.4;
}

.outlook-ahead-highlight {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--color-gold);
    margin: 1.5rem 0;
    line-height: 1.4;
}

.outlook-ahead-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .outlook-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .outlook-stat-item:nth-child(2) {
        border-right: none;
    }
    .outlook-stat-item:nth-child(3) {
        border-right: 1px solid var(--color-border);
    }
    
    .outlook-trends-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1rem;
    }
    .outlook-trends-grid .outlook-trend-item:last-child {
        grid-column: 1 / -1;
    }
    
    .outlook-bottom-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .outlook-stats-grid {
        grid-template-columns: 1fr;
    }
    .outlook-stat-item {
        border-right: none !important;
        border-bottom: 1px solid var(--color-border);
        padding: 1.5rem 0;
    }
    .outlook-stat-item:last-child {
        border-bottom: none;
    }
    
    .outlook-trends-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Guide Page Styles --- */
.guide-hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 80px;
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.guide-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3, 9, 20, 0.2) 0%, rgba(3, 9, 20, 0.5) 50%, rgba(3, 9, 20, 0.9) 100%);
    pointer-events: none;
}

.guide-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.guide-hero-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: block;
}

.guide-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.guide-hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.guide-hero-intro {
    font-size: 1rem;
    color: var(--color-offwhite);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.guide-quote-box {
    position: absolute;
    right: 5%;
    bottom: -50px;
    background: rgba(10, 15, 25, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 4px;
    max-width: 450px;
    z-index: 3;
}

.guide-quote-box blockquote {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: 1rem;
    position: relative;
}

.guide-quote-box blockquote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--color-gold);
    position: absolute;
    left: -2.5rem;
    top: -1.5rem;
    font-family: var(--font-serif);
    opacity: 0.5;
}

.guide-quote-author {
    color: var(--color-gold);
    font-size: 0.9rem;
    padding-left: 2rem;
    position: relative;
}

.guide-quote-author::before {
    content: '\2014';
    position: absolute;
    left: 0;
}

.guide-intro-section {
    padding: 6rem 0;
    max-width: 650px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.guide-intro-section h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.guide-intro-section p {
    font-size: 1.1rem;
    color: var(--color-offwhite);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-pillars-section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.guide-pillars-section h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-white);
    margin-bottom: 3rem;
}

.guide-pillars-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
}

.guide-pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 0 0.5rem;
}
.guide-pillar-item:last-child {
    border-right: none;
}

.guide-pillar-icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.guide-pillar-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-white);
}

.guide-pillar-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin: 0.5rem 0 1rem;
    text-transform: uppercase;
    line-height: 1.3;
}

.guide-pillar-desc {
    font-size: 0.7rem;
    color: var(--color-muted);
    line-height: 1.4;
}

.guide-benefits-split {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.guide-col h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--color-white);
    margin-bottom: 2rem;
}

.guide-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guide-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--color-offwhite);
}

.guide-benefit-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    flex-shrink: 0;
}

.guide-col-text p {
    font-size: 0.95rem;
    color: var(--color-offwhite);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-bg-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-top: 1.5rem;
}

.guide-promo-box {
    margin-bottom: 2rem;
}
.guide-promo-box h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.guide-promo-box p {
    font-size: 0.9rem;
    color: var(--color-offwhite);
    line-height: 1.5;
}

.guide-promo-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 1.5rem 0;
}

.guide-bottom-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
}

.guide-bottom-col h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.guide-bottom-col p {
    font-size: 1rem;
    color: var(--color-offwhite);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-gold);
    text-decoration: none;
    margin-bottom: 2rem;
}

.guide-link:hover {
    text-decoration: underline;
}

.guide-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.guide-approach-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--color-offwhite);
}

.guide-approach-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
}

.guide-footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.guide-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.guide-footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}
.guide-footer-link {
    display: block;
    color: var(--color-offwhite);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}
.guide-footer-link:hover {
    color: var(--color-gold);
}
.guide-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.guide-socials a {
    color: var(--color-white);
}
.guide-socials a:hover {
    color: var(--color-gold);
}

@media (max-width: 1024px) {
    .guide-pillars-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem 1rem;
    }
    .guide-pillar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 0 0 1.5rem;
    }
    .guide-quote-box {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .guide-benefits-split, .guide-bottom-split, .guide-footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .guide-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .guide-approach-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Invest Page Styles --- */
.invest-hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 100px;
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.invest-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3, 9, 20, 0.65) 0%, rgba(3, 9, 20, 0.35) 40%, rgba(3, 9, 20, 0.1) 100%),
                linear-gradient(to top, rgba(3, 9, 20, 0.85) 0%, transparent 40%);
    pointer-events: none;
}

.invest-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.invest-glance-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(10, 15, 25, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    padding: 3rem;
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.invest-glance-left h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.invest-glance-left p {
    font-size: 0.95rem;
    color: var(--color-offwhite);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.invest-glance-right h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.invest-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.invest-stats-grid.bottom {
    grid-template-columns: 1fr 1fr;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.invest-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.invest-stat-val {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.invest-stat-val svg {
    color: var(--color-gold);
    width: 24px;
    height: 24px;
}

.invest-stat-desc {
    font-size: 0.75rem;
    color: var(--color-muted);
    line-height: 1.4;
}

.invest-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.invest-split-col > h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.invest-trend-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 3rem;
}

.invest-trend-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.invest-trend-img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.invest-trend-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.invest-trend-num {
    position: absolute;
    left: -45px;
    top: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-family: var(--font-sans);
}

.invest-trend-title {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    text-transform: uppercase;
}

.invest-trend-desc {
    font-size: 0.8rem;
    color: var(--color-offwhite);
    line-height: 1.5;
}

.invest-opp-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.invest-opp-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.invest-opp-img {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.invest-bottom-boxes {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    padding: 4rem 0;
}

.invest-quote-box {
    position: relative;
    padding: 3rem;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 350px;
    border: 1px solid rgba(255,255,255,0.1);
}

.invest-quote-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3,9,20,0.95), rgba(3,9,20,0.4));
    border-radius: 4px;
}

.invest-quote-content {
    position: relative;
    z-index: 2;
    max-width: 450px;
}

.invest-quote-content blockquote {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-white);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.invest-quote-author {
    color: var(--color-gold);
    font-size: 0.9rem;
    padding-left: 2rem;
    position: relative;
}
.invest-quote-author::before {
    content: '\2014';
    position: absolute;
    left: 0;
}

.invest-about-box {
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.invest-about-box h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.invest-about-box p {
    font-size: 0.95rem;
    color: var(--color-offwhite);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
    .invest-glance-box {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .invest-split-section {
        grid-template-columns: 1fr;
    }
    .invest-split-col {
        border-right: none;
    }
    .invest-bottom-boxes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .invest-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .invest-trend-list {
        padding-left: 0;
    }
    .invest-trend-item, .invest-opp-item {
        flex-direction: column;
    }
    .invest-trend-img, .invest-opp-img {
        width: 100%;
        height: 180px;
    }
    .invest-trend-num {
        position: relative;
        left: 0;
        margin-bottom: 0.5rem;
    }
}

/* --- Journal Filters --- */
.jou-filters-container {
    padding: 2.5rem 0;
    background-color: var(--bg-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.jou-filters-list {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.jou-filters-list::-webkit-scrollbar {
    display: none;
}

.jou-filters-list li {
    flex-shrink: 0;
}

.jou-filter-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-muted);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    transition: var(--transition);
    background-color: transparent;
}

.jou-filter-link svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
    transition: var(--transition);
}

.jou-filter-link:hover {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.03);
}

.jou-filter-link:hover svg {
    opacity: 1;
}

.jou-filter-link.active {
    color: var(--bg-primary);
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.jou-filter-link.active svg {
    opacity: 1;
    stroke: var(--bg-primary);
}

@media (max-width: 768px) {
    .jou-filters-container {
        padding: 1.5rem 0;
    }
    .jou-filters-list {
        gap: 0.75rem;
    }
    .jou-filter-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* --- Report Hero --- */
.report-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 12rem 0 6rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.report-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(3,9,20,0.95) 0%, rgba(3,9,20,0.6) 50%, rgba(3,9,20,0.1) 100%);
    z-index: 1;
}

.report-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 30%);
    z-index: 1;
}

.report-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.report-hero-label {
    display: block;
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.report-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 2rem;
    max-width: 800px;
}

.report-hero-title span {
    color: var(--color-gold);
    font-style: italic;
}

.report-hero-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-offwhite);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.report-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.report-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.report-meta-item svg {
    opacity: 0.7;
}

.report-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    padding: 0.8rem 1.8rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

.report-download-btn:hover {
    background-color: var(--color-gold);
    color: var(--bg-primary);
}

@media (max-width: 768px) {
    .report-hero {
        padding: 8rem 0 4rem;
        min-height: auto;
    }
    .report-hero::before {
        background: linear-gradient(to right, rgba(3,9,20,0.95) 0%, rgba(3,9,20,0.8) 100%);
    }
}

@media (min-width: 769px) {
    .hero-content {
        padding-left: 2.95rem;
    }
    
    /* Align all other pages' hero text with the logo text just like the index page */
    .report-hero .container,
    .article-hero .container {
        padding-left: calc(2.5rem + 2.95rem) !important;
    }
}

/* Report Page Mobile Fixes */
@media (max-width: 768px) {
    .report-box {
        padding: 1.5rem;
    }
    
    .report-hero-title {
        font-size: 2rem;
        word-break: break-word;
    }

    /* Radar Chart Scaling to prevent horizontal overflow */
    .radar-container {
        height: 250px;
    }
    
    .radar-chart {
        width: 180px;
        height: 180px;
    }
    
    .radar-label {
        width: 80px;
        font-size: 0.65rem;
    }

    /* Map Legend Overlay */
    .map-container {
        height: 450px;
    }
    
    .map-legend {
        position: absolute;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        padding: 1.5rem;
        background: rgba(3, 9, 20, 0.9);
        backdrop-filter: blur(5px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ==========================================================================
   EXACT REDESIGN STYLES FOR INDEX PAGE (Matching Reference Design)
   ========================================================================== */

:root {
    --color-gold: #D99B26;
    --color-gold-light: #F5D075;
    --color-gold-hover: #E5A93C;
    --bg-navy-main: #050C18;
    --bg-navy-pillar: #081324;
    --bg-navy-card: #0B172B;
    --bg-cream-sec: #F6F4EF;
    --text-dark-title: #0B1B2B;
    --text-dark-body: #4A5568;
    --border-gold-subtle: rgba(217, 155, 38, 0.25);
    --border-dark-subtle: rgba(255, 255, 255, 0.08);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
    background-color: rgba(5, 12, 24, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(217, 155, 38, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding: 0.3rem 0;
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link.active {
    color: var(--color-white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--color-gold);
}

.btn-nav-contact {
    border: 1px solid rgba(217, 155, 38, 0.7);
    padding: 0.45rem 1.2rem;
    border-radius: 2px;
    color: var(--color-white) !important;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav-contact::after {
    display: none !important;
}

.btn-nav-contact:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: #050C18 !important;
}

/* Standardize Hero Section Height Across All Pages */
.hero,
.philosophy-hero,
.article-hero,
.report-hero,
.guide-hero,
.invest-hero {
    min-height: 100vh !important;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .hero,
    .philosophy-hero,
    .article-hero,
    .report-hero,
    .guide-hero,
    .invest-hero {
        min-height: 85vh !important;
    }
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 12, 24, 0.25) 0%, rgba(5, 12, 24, 0.05) 35%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero-content {
    max-width: 820px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    line-height: 1.1;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 1.8rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.gold-text-hero {
    color: #c5a059;
    font-style: italic;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #c5a059;
}

.hero-description {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #FFFFFF;
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 680px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-solid-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--color-gold);
    color: #050C18;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border-radius: 2px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--color-gold);
}

.btn-solid-gold:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 155, 38, 0.3);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border-radius: 2px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(217, 155, 38, 0.05);
}

/* 4 Pillar Bar Section */
.pillars-bar {
    background-color: #040B16;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.pillar-card {
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition);
}

.pillar-card:last-child {
    border-right: none;
}

.pillars-bar {
    padding: 4.5rem 0;
    background-color: #030811;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pillars-grid:has(> .pillar-card:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
}

.pillars-bar-4 .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
}

.pillar-card {
    background: rgba(5, 12, 24, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 8px;
    padding: 2.2rem 1.8rem;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.pillar-icon {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon svg {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    stroke: var(--color-gold) !important;
}

.pillar-title {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 0.8rem;
}

.pillar-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.pillar-desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.pillar-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.pillar-link:hover {
    color: var(--color-gold-hover);
    transform: translateX(4px);
}

/* Our Frameworks Section (Light Cream) */
.frameworks-section {
    background-color: var(--bg-cream-sec);
    padding: 6rem 0;
    color: var(--text-dark-title);
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-tag-gold {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: block;
}

.section-title-dark {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--text-dark-title);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle-dark {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-dark-body);
}

.frameworks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-bottom: 3.5rem;
}

.framework-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 2.8rem 2rem 2.2rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.framework-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.framework-icon-badge {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 50%;
    background-color: #071322;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.framework-icon-badge svg {
    width: 1.8rem;
    height: 1.8rem;
}

.framework-card-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--text-dark-title);
    margin-bottom: 0.8rem;
}

.framework-card-desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-dark-body);
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

.framework-card-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.framework-card-link:hover {
    color: #B87D1B;
    transform: translateX(3px);
}

.frameworks-action {
    text-align: center;
}

.btn-cream-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.85rem 2.2rem;
    border-radius: 2px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cream-outline:hover {
    background-color: var(--color-gold);
    color: #FFFFFF;
}

/* Destinations Section */
.destinations-section {
    background-color: var(--bg-navy-main);
    padding: 6rem 0;
}

.destinations-split-layout {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 3.5rem;
    align-items: center;
}

.destinations-info {
    padding-right: 1rem;
}

.destinations-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.destinations-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.2rem;
}

.gold-link-btn {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.gold-link-btn:hover {
    color: var(--color-gold-hover);
    transform: translateX(4px);
}

.destinations-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dest-image-card {
    position: relative;
    height: 380px;
    border-radius: 6px;
    overflow: hidden;
}

.dest-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-image-card:hover .dest-card-img {
    transform: scale(1.06);
}

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 12, 24, 0.9) 0%, rgba(5, 12, 24, 0.3) 50%, transparent 100%);
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dest-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 0.4rem;
}

.dest-card-desc {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

/* Geographic Ecosystem Section */
.geo-ecosystem-section {
    background-color: #FFFFFF;
    padding: 6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.geo-split-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3.5rem;
    align-items: center;
}

.geo-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    color: #0B1B2B;
    margin-bottom: 1.5rem;
}

.geo-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 2.2rem;
}

.geo-map-container {
    position: relative;
    background-color: #061120;
    border-radius: 8px;
    border: 1px solid rgba(217, 155, 38, 0.2);
    padding: 0;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.geo-map-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    border-radius: 8px;
}

.map-grid-line {
    stroke: rgba(217, 155, 38, 0.06);
    stroke-width: 1;
}

.map-label {
    font-family: var(--font-sans);
    fill: rgba(255, 255, 255, 0.85);
}

.sea-label {
    font-size: 1.1rem;
    letter-spacing: 0.4em;
    fill: rgba(217, 155, 38, 0.25);
    font-weight: 600;
}

.country-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    fill: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.city-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    fill: #FFFFFF;
}

.map-marker {
    cursor: pointer;
}

.marker-glow-circle {
    fill: url(#marker-orange-glow);
    opacity: 0.6;
}

.marker-pulse {
    fill: none;
    stroke: #D99B26;
    stroke-width: 1.5;
    animation: pulse 2.5s infinite;
}

.marker-dot {
    fill: #FFFFFF;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 1; transform-origin: center; }
    100% { transform: scale(2.2); opacity: 0; transform-origin: center; }
}

.map-tooltip {
    position: absolute;
    background: rgba(5, 12, 24, 0.95);
    border: 1px solid var(--color-gold);
    padding: 0.8rem 1.2rem;
    border-radius: 4px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    transform: translate(-50%, -120%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.map-tooltip.visible {
    opacity: 1;
}

.map-tooltip-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--color-gold);
}

.map-tooltip-coords {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Who We Work With Section */
.work-with-section {
    background-color: var(--bg-navy-main);
    padding: 5.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.work-with-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.work-with-col {
    padding: 1.5rem 1.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.work-with-col:last-child {
    border-right: none;
}

.work-with-col:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.work-with-icon {
    width: 2.4rem;
    height: 2.4rem;
    margin-bottom: 1.2rem;
}

.work-with-icon svg {
    width: 100%;
    height: 100%;
}

.work-with-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-white);
}

/* Why Choose Section (Light Cream) */
.why-choose-section {
    background-color: var(--bg-cream-sec);
    padding: 6rem 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.why-choose-card {
    background-color: #FFFFFF;
    border-radius: 6px;
    padding: 2.2rem 1.4rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.why-choose-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.why-icon {
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 1.2rem;
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark-title);
    margin-bottom: 0.6rem;
}

.why-desc {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-dark-body);
}

/* Latest Thinking Section */
.latest-thinking-section {
    background-color: var(--bg-navy-main);
    padding: 6rem 0;
}

.thinking-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.thinking-card {
    background-color: #071322;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.thinking-card:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 155, 38, 0.3);
}

.thinking-img-box {
    height: 190px;
    overflow: hidden;
}

.thinking-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.thinking-card:hover .thinking-img {
    transform: scale(1.05);
}

.thinking-body {
    padding: 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.thinking-category {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
    display: block;
}

.thinking-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.thinking-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.thinking-link:hover {
    color: var(--color-gold-hover);
    transform: translateX(4px);
}

/* Dark Boxed Card 4 */
.thinking-box-card {
    background-color: #061120;
    border: 1px solid rgba(217, 155, 38, 0.4);
    border-radius: 6px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.thinking-box-card:hover {
    border-color: var(--color-gold);
    background-color: #081527;
}

.thinking-box-icon {
    width: 2.8rem;
    height: 2.8rem;
    margin-bottom: 1.5rem;
}

.thinking-box-icon svg {
    width: 100%;
    height: 100%;
}

.thinking-box-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.btn-dark-box-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.75rem 1.6rem;
    border-radius: 2px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-dark-box-outline:hover {
    background-color: var(--color-gold);
    color: #050C18;
}

/* Bottom Banner CTA Section */
.bottom-cta-banner {
    position: relative;
    padding: 6.5rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bottom-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 12, 24, 0.92) 0%, rgba(5, 12, 24, 0.8) 60%, rgba(5, 12, 24, 0.85) 100%);
}

.bottom-cta-flex {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.bottom-cta-left {
    max-width: 750px;
}

.bottom-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.gold-text-cta {
    color: var(--color-gold);
    background: linear-gradient(135deg, #D99B26 0%, #F5D075 50%, #D99B26 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bottom-cta-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.btn-large-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--color-gold);
    color: #050C18;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1.05rem 2.4rem;
    border-radius: 2px;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    border: 1px solid var(--color-gold);
}

.btn-large-gold:hover {
    background-color: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 155, 38, 0.35);
}

/* Footer Adjustments */
footer#footer, footer {
    background-color: #030811;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 0 2.5rem 0;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-sans);
}

footer a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none !important;
    transition: color 0.3s ease, border-color 0.3s ease;
}

footer a:hover {
    color: var(--color-gold, #c5a059);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none !important;
    margin-bottom: 1.2rem;
}

.footer-desc, .footer-brand-desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
    max-width: 340px;
    margin-top: 0.8rem;
}

.footer-heading, .footer-column-heading {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c5a059;
    margin-bottom: 1.5rem;
}

.footer-links-col ul, .footer-links ul, footer ul, .footer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links-col li, .footer-links li, footer ul li, .footer-menu li {
    list-style-type: none !important;
    margin-bottom: 0.65rem;
    padding-left: 0 !important;
}

.footer-link, footer ul li a {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover, footer ul li a:hover {
    color: #c5a059 !important;
}

.btn-footer-insights {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c5a059 !important;
    border: 1px solid rgba(197, 160, 89, 0.5);
    padding: 0.6rem 1.2rem;
    border-radius: 2px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.btn-footer-insights:hover {
    background-color: #c5a059;
    color: #030811 !important;
    border-color: #c5a059;
}

.btn-footer-insights .arrow {
    transition: transform 0.3s ease;
}

.btn-footer-insights:hover .arrow {
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
}

.copyright-text, .footer-bottom p {
    font-family: var(--font-sans);
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.footer-legal, .footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-legal a, .footer-legal-link, .footer-bottom-link {
    font-family: var(--font-sans);
    color: rgba(255, 255, 255, 0.45) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-legal a:hover, .footer-legal-link:hover, .footer-bottom-link:hover {
    color: #c5a059 !important;
}

.footer-legal .sep, .footer-bottom-links .sep {
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pillar-card:nth-child(2) {
        border-right: none;
    }
    .pillar-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .frameworks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .work-with-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .thinking-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .destinations-split-layout,
    .geo-split-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .destinations-cards-grid {
        grid-template-columns: 1fr;
    }
    .dest-image-card {
        height: 300px;
    }
    .bottom-cta-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .pillar-card {
        border-right: none;
    }
    .frameworks-grid {
        grid-template-columns: 1fr;
    }
    .work-with-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .thinking-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ==========================================================================
   Frameworks Page Redesign Custom Styles (Matching Reference Design)
   ========================================================================== */

/* 1. Four Pillars Section (Light Cream) */
.fw-pillars-section {
    background-color: #f9f8f4;
    padding: 6rem 0;
}

.fw-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem auto;
}

.fw-section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: #050c18;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.fw-section-subtitle {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    line-height: 1.65;
    color: #555555;
}

.fw-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.fw-pillar-card {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 2.5rem 1.8rem;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fw-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.fw-pillar-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #081424;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.fw-pillar-icon svg {
    width: 28px;
    height: 28px;
    stroke: #c5a059;
    fill: none;
}

.fw-pillar-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #081424;
    margin-bottom: 0.3rem;
}

.fw-pillar-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: #c5a059;
    margin-bottom: 1.2rem;
}

.fw-pillar-desc {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    line-height: 1.6;
    color: #555555;
}

/* 2. Integrated Ecosystem Section (Dark Navy) */
.fw-ecosystem-section {
    background-color: #050c18;
    padding: 6rem 0;
    color: #ffffff;
}

.fw-ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1.1fr;
    gap: 3.5rem;
    align-items: center;
}

.fw-ecosystem-left h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 400;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.fw-ecosystem-left p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.7;
    color: #a0aec0;
}

/* Compass Wheel Graphic */
.fw-compass-container {
    position: relative;
    width: 360px;
    height: 360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fw-orbit-circle {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px dashed rgba(197, 160, 89, 0.4);
}

.fw-compass-center {
    position: absolute;
    z-index: 5;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #071426;
    border: 1.5px solid #c5a059;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.2);
}

.fw-compass-center svg {
    width: 28px;
    height: 28px;
    margin-bottom: 0.3rem;
}

.fw-compass-center-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.2;
}

.fw-compass-node {
    position: absolute;
    z-index: 4;
    text-align: center;
    width: 140px;
}

.fw-node-top { top: -15px; left: 50%; transform: translateX(-50%); }
.fw-node-right { right: -35px; top: 50%; transform: translateY(-50%); }
.fw-node-bottom { bottom: -15px; left: 50%; transform: translateX(-50%); }
.fw-node-left { left: -35px; top: 50%; transform: translateY(-50%); }

.fw-node-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #081424;
    border: 1.5px solid #c5a059;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.4rem auto;
}

.fw-node-circle svg {
    width: 22px;
    height: 22px;
    stroke: #c5a059;
    fill: none;
}

.fw-node-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    display: block;
    line-height: 1.2;
}

.fw-node-desc {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    color: #a0aec0;
    display: block;
    margin-top: 0.2rem;
    line-height: 1.2;
}

/* Ecosystem Right Features List */
.fw-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.fw-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.fw-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #c5a059;
    margin-top: 2px;
}

.fw-feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: #c5a059;
    fill: none;
}

.fw-feature-content h3 {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.fw-feature-content p {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    line-height: 1.45;
    color: #a0aec0;
}

/* 3. Inset Adapted Quote Banner */
.fw-quote-wrapper {
    background-color: #f9f8f4;
    padding: 3rem 0;
}

.fw-quote-card {
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 2.5rem 3.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1px 1.5fr;
    gap: 3rem;
    align-items: center;
}

.fw-quote-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.fw-fingerprint-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: #c5a059;
}

.fw-fingerprint-icon svg {
    width: 44px;
    height: 44px;
    stroke: #c5a059;
    fill: none;
}

.fw-quote-left h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.3;
    color: #050c18;
}

.fw-quote-line {
    background-color: rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 80px;
}

.fw-quote-right p {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 0.4rem;
}

.fw-quote-right p:last-child {
    margin-bottom: 0;
}

/* 4. Applied Across Every Level Section (Light Cream) */
.fw-levels-section {
    background-color: #f9f8f4;
    padding: 5rem 0;
}

.fw-levels-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.fw-level-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fw-level-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.2rem;
    color: #c5a059;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fw-level-icon svg {
    width: 36px;
    height: 36px;
    stroke: #c5a059;
    fill: none;
}

.fw-level-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: #050c18;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.fw-level-desc {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    line-height: 1.55;
    color: #666666;
}

/* 5. Beyond the Frameworks Section (Dark Navy) */
.fw-services-section {
    background-color: #050c18;
    padding: 6rem 0;
    color: #ffffff;
}

.fw-services-header {
    margin-bottom: 3.5rem;
}

.fw-services-header .fw-section-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #a0aec0;
    margin-bottom: 0.5rem;
    display: block;
}

.fw-services-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 400;
    color: #c5a059;
    margin-bottom: 1rem;
}

.fw-services-header p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #a0aec0;
    max-width: 700px;
    line-height: 1.6;
}

.fw-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2.5rem;
}

.fw-service-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fw-service-icon {
    width: 32px;
    height: 32px;
    color: #c5a059;
    margin-bottom: 1.2rem;
}

.fw-service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #c5a059;
    fill: none;
}

.fw-service-title {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.fw-service-desc {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    line-height: 1.55;
    color: #a0aec0;
}

/* 6. CTA Ocean Background Banner */
.fw-cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 7rem 0;
    text-align: center;
    color: #ffffff;
}

.fw-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 12, 24, 0.75) 0%, rgba(5, 12, 24, 0.85) 100%);
}

.fw-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.fw-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.fw-cta-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 400;
    color: #c5a059;
    margin-bottom: 2.5rem;
}

/* Responsive Rules for Frameworks Redesign */
@media (max-width: 1100px) {
    .fw-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fw-ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .fw-features-list {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
    }
    .fw-quote-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .fw-quote-line {
        display: none;
    }
    .fw-levels-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .fw-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 650px) {
    .fw-pillars-grid {
        grid-template-columns: 1fr;
    }
    .fw-levels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fw-services-grid {
        grid-template-columns: 1fr;
    }
    .fw-compass-container {
        width: 300px;
        height: 300px;
    }
    .fw-node-right { right: -15px; }
    .fw-node-left { left: -15px; }
}

/* ==========================================================================
   Insights Page Additional Sections (Insights from Frameworks & Monitor)
   ========================================================================== */

/* Insights from Our Frameworks */
.ins-fw-section {
    padding: 5rem 0;
    background-color: #030a14;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ins-fw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.ins-fw-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding: 2.2rem 1.6rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.ins-fw-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ins-fw-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #081424;
    border: 1px solid #c5a059;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.ins-fw-icon svg {
    width: 24px;
    height: 24px;
    stroke: #c5a059;
    fill: none;
}

.ins-fw-title {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.ins-fw-text {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    line-height: 1.6;
    color: #a0aec0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.ins-fw-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c5a059;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.ins-fw-link:hover {
    color: #f3d69b;
    transform: translateX(4px);
}

/* Adriatic Destination Monitor */
.ins-monitor-section {
    padding: 4rem 0;
    background-color: #030811;
}

.ins-monitor-card {
    background: linear-gradient(135deg, #071426 0%, #030a14 100%);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 6px;
    padding: 3.5rem 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.ins-live-tag {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #4ade80;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.ins-live-dot {
    font-size: 0.6rem;
    animation: insPulse 2s infinite;
}

@keyframes insPulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.ins-monitor-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.ins-monitor-desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    line-height: 1.65;
    color: #a0aec0;
    margin-bottom: 2rem;
}

.ins-monitor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.ins-metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding: 1.5rem 1rem;
    text-align: center;
}

.ins-metric-icon {
    width: 24px;
    height: 24px;
    margin: 0 auto 0.6rem auto;
    color: #c5a059;
}

.ins-metric-icon svg {
    width: 22px;
    height: 22px;
    stroke: #c5a059;
    fill: none;
}

.ins-metric-title {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    display: block;
    margin-bottom: 0.2rem;
}

.ins-metric-subtext {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 0.8rem;
}

.ins-metric-value {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.ins-metric-value span.trend-up {
    color: #4ade80;
    font-size: 1.1rem;
}

/* Filter tabs for Latest Research section */
.ins-filter-bar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.ins-filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ins-filter-btn:hover, .ins-filter-btn.active {
    background: #c5a059;
    border-color: #c5a059;
    color: #030811;
}

@media (max-width: 1100px) {
    .ins-fw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ins-monitor-card {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .ins-monitor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ins-fw-grid {
        grid-template-columns: 1fr;
    }
    .ins-monitor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Approach Page Custom Styling
   ========================================================================== */

/* Section 1: Strategic Methodology (01, 02, 03, 04) */
.app-methodology-section {
    padding: 6rem 0;
    background-color: #030811;
}

.app-methodology-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.app-step-card {
    text-align: center;
    padding: 1.5rem 1rem;
}

.app-step-num {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 300;
    color: #c5a059;
    line-height: 1;
    margin-bottom: 1.2rem;
}

.app-step-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-step-icon svg {
    width: 42px;
    height: 42px;
    stroke: #c5a059;
    fill: none;
    stroke-width: 1.5;
}

.app-step-title {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.app-step-subtitle {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    color: #c5a059;
    margin-bottom: 1rem;
}

.app-step-text {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    line-height: 1.6;
    color: #a0aec0;
}

.app-step-arrow {
    color: #c5a059;
    font-size: 1.4rem;
    margin-top: 5rem;
    opacity: 0.7;
}

/* Section 2: Powered by Our Framework Ecosystem (Dark Inset Box) */
.app-fw-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 6px;
    padding: 3rem 3rem;
    margin: 3rem 0 5rem 0;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.app-fw-intro-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c5a059;
    margin-bottom: 0.8rem;
}

.app-fw-intro-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a0aec0;
}

.app-fw-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-fw-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #081424;
    border: 1px solid #c5a059;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.app-fw-icon-badge svg {
    width: 22px;
    height: 22px;
    stroke: #c5a059;
    fill: none;
    stroke-width: 1.5;
}

.app-fw-col-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.app-fw-col-text {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    line-height: 1.5;
    color: #a0aec0;
}

/* Section 3: What a Partnership Looks Like (5 Dotted Steps Timeline) */
.app-timeline-section {
    padding: 6rem 0;
    background-color: #030a14;
}

.app-timeline-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    margin-top: 3.5rem;
}

.app-timeline-line {
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 1px;
    border-top: 2px dotted rgba(197, 160, 89, 0.4);
    z-index: 1;
}

.app-timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 0.5rem;
}

.app-timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #050c18;
    border: 1px solid #c5a059;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.app-timeline-icon svg {
    width: 26px;
    height: 26px;
    stroke: #c5a059;
    fill: none;
    stroke-width: 1.5;
}

.app-timeline-num-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c5a059;
    margin-bottom: 0.6rem;
}

.app-timeline-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    line-height: 1.6;
    color: #a0aec0;
}

/* Section 4: Our Principles (5 Columns) */
.app-principles-section {
    padding: 6rem 0;
    background-color: #030811;
}

.app-principles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.8rem;
    margin-top: 3.5rem;
}

.app-principle-card {
    text-align: center;
    padding: 2.2rem 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.app-principle-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-4px);
}

.app-principle-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.2rem auto;
}

.app-principle-icon svg {
    width: 38px;
    height: 38px;
    stroke: #c5a059;
    fill: none;
    stroke-width: 1.5;
}

.app-principle-title {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.app-principle-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    line-height: 1.6;
    color: #a0aec0;
}

/* Section 5: Adapted Quote Box ("Every destination is unique.") */
.app-quote-box {
    background: #f4f0e6;
    border-radius: 6px;
    margin: 5rem 0;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    overflow: hidden;
    color: #050c18;
}

.app-quote-content {
    padding: 4rem 4rem;
}

.app-quote-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 1.5rem;
}

.app-quote-icon svg {
    width: 50px;
    height: 50px;
    stroke: #c5a059;
    fill: none;
    stroke-width: 1.2;
}

.app-quote-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: #050c18;
    line-height: 1.2;
    margin: 0;
}

.app-quote-right {
    padding: 4rem 4rem;
    border-left: 1px solid rgba(5, 12, 24, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-quote-p1 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: #050c18;
    margin-bottom: 0.8rem;
}

.app-quote-p2 {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    line-height: 1.65;
    color: #4a5568;
}

/* Section 6: What Makes Us Different (6 Columns Grid) */
.app-different-section {
    padding: 6rem 0;
    background-color: #030811;
}

.app-different-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.app-diff-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.app-diff-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-4px);
}

.app-diff-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 1.2rem auto;
}

.app-diff-icon svg {
    width: 34px;
    height: 34px;
    stroke: #c5a059;
    fill: none;
    stroke-width: 1.5;
}

.app-diff-title {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.app-diff-text {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    line-height: 1.55;
    color: #a0aec0;
}

/* Section 7: Ocean Boat Banner CTA */
.app-cta-banner {
    position: relative;
    padding: 7rem 0;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.app-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 8, 17, 0.8) 0%, rgba(3, 8, 17, 0.85) 100%);
}

.app-cta-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.app-cta-t1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.app-cta-t2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 400;
    color: #c5a059;
    margin-bottom: 2.5rem;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .app-methodology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    .app-step-arrow { display: none; }
    .app-fw-box {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .app-timeline-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .app-timeline-line { display: none; }
    .app-principles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .app-different-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .app-methodology-grid { grid-template-columns: 1fr; }
    .app-timeline-grid { grid-template-columns: 1fr; }
    .app-principles-grid { grid-template-columns: 1fr; }
    .app-quote-box {
        grid-template-columns: 1fr;
    }
    .app-quote-right {
        border-left: none;
        border-top: 1px solid rgba(5, 12, 24, 0.12);
    }
    .app-different-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .app-different-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Destinations Page Styling
   ========================================================================== */

/* 1. Destination Types Cards Grid */
.dest-types-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
    margin-top: 3.5rem;
}

.dest-type-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.8rem 1.2rem;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
}

.dest-type-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 12, 24, 0.2) 0%, rgba(5, 12, 24, 0.92) 80%);
    transition: all 0.35s ease;
}

.dest-type-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.dest-type-card:hover::before {
    background: linear-gradient(180deg, rgba(5, 12, 24, 0.1) 0%, rgba(5, 12, 24, 0.95) 75%);
}

.dest-type-content {
    position: relative;
    z-index: 2;
}

.dest-type-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(5, 12, 24, 0.8);
    border: 1px solid #c5a059;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.dest-type-icon svg {
    width: 22px;
    height: 22px;
    stroke: #c5a059;
    fill: none;
    stroke-width: 1.5;
}

.dest-type-title {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.dest-type-text {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    line-height: 1.5;
    color: #cbd5e0;
}

/* 2. Geographic Ecosystem Map */
.dest-map-section {
    padding: 6rem 0;
    background-color: #030a14;
}

.dest-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3.5rem;
    align-items: center;
    margin-top: 3.5rem;
}

.dest-map-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.dest-map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.dest-map-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background-color: #081424;
    border: 1px solid #c5a059;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dest-map-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: #c5a059;
    fill: none;
    stroke-width: 1.5;
}

.dest-map-info-title {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.dest-map-info-text {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    line-height: 1.5;
    color: #a0aec0;
}

.dest-map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.25);
    background-color: #040d1a;
    min-height: 440px;
    background-size: cover;
    background-position: center;
}

.dest-map-overlay {
    display: none;
}

.dest-map-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(5, 12, 24, 0.85);
    border: 1px solid #c5a059;
    border-radius: 20px;
    padding: 0.35rem 0.85rem;
    z-index: 5;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dest-map-node:hover {
    background: #c5a059;
    transform: scale(1.06);
}

.dest-map-node:hover .dest-node-label {
    color: #030811;
}

.dest-map-node:hover .dest-node-dot {
    background: #030811;
}

.dest-node-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c5a059;
}

.dest-node-label {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .dest-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .dest-map-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dest-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .dest-types-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Overrides
   ========================================================================== */

/* 1. Header Responsive Rules (Keep ONLY Logo, Language Selector & Hamburger Menu on Mobile/Tablet) */
@media (max-width: 1024px) {
    .nav-menu {
        display: none !important;
    }
    
    .header-right {
        display: flex !important;
        align-items: center;
        gap: 1.2rem;
    }
    
    .lang-selector {
        display: flex !important;
        align-items: center;
        font-size: 0.8rem;
    }

    .lang-btn {
        padding: 0.2rem 0.4rem;
    }

    .nav-toggle {
        display: flex !important;
        margin-left: 0.5rem;
    }

    .nav-container {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }
}

/* 2. Page & Section Responsive Layouts */
@media (max-width: 1024px) {
    .app-methodology-grid {
        grid-template-columns: 1fr !important;
        gap: 2.2rem !important;
    }
    .app-methodology-arrow {
        display: none !important;
    }

    .app-timeline-grid {
        grid-template-columns: 1fr !important;
        gap: 1.8rem !important;
    }
    .app-timeline-card::after {
        display: none !important;
    }

    .app-principles-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .app-different-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .dest-types-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 900px) {
    .app-quote-box {
        grid-template-columns: 1fr !important;
    }
    .app-quote-right {
        padding: 2.2rem 1.6rem !important;
    }

    .dest-map-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .who-partner .container > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
}

@media (max-width: 600px) {
    .app-principles-grid {
        grid-template-columns: 1fr !important;
    }

    .app-different-grid {
        grid-template-columns: 1fr !important;
    }

    .dest-types-grid {
        grid-template-columns: 1fr !important;
    }

    .philosophy-hero h1 {
        font-size: 2.4rem !important;
    }

    .app-cta-t1 {
        font-size: 1.8rem !important;
    }

    .app-cta-t2 {
        font-size: 1.5rem !important;
    }
}

/* 3. Strict Horizontal Overflow & Swiping Prevention */
section, header, footer, main, .container,
.hero, .philosophy-hero, .article-hero, .report-hero, .guide-hero, .invest-hero,
.dest-map-container, .dest-map-wrapper, .app-quote-box, .app-cta-banner,
.mobile-nav-overlay, .partners, .geo-ecosystem, .who-partner {
    max-width: 100% !important;
    overflow-x: hidden;
}

img, svg, video, canvas, iframe {
    max-width: 100%;
    height: auto;
}

@media (max-width: 480px) {
    .container {
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .dest-map-node {
        max-width: calc(100% - 20px) !important;
    }
}

/* ==================== DESTINATION GOVERNANCE PAGE ==================== */
.gov-maturity-section {
    padding: 6rem 0;
    background-color: #030914;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.gov-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gov-section-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.8rem;
}

.gov-section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: #ffffff;
}

.gov-maturity-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.gov-maturity-card {
    flex: 1;
    background: rgba(5, 12, 24, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.gov-maturity-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.gov-step-arrow {
    color: var(--color-gold);
    font-size: 1.4rem;
    flex-shrink: 0;
    opacity: 0.75;
}

@media (max-width: 992px) {
    .gov-maturity-flow {
        flex-direction: column;
    }
    .gov-step-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

.gov-maturity-icon {
    width: 48px !important;
    height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    margin: 0 auto 1.2rem auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.gov-maturity-icon svg {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    stroke: var(--color-gold) !important;
    flex-shrink: 0 !important;
}

.gov-maturity-step {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 0.4rem;
}

.gov-maturity-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.gov-maturity-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.gov-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 300;
}

/* Grid Section: Indicators, Reveals, Outputs */
.gov-matrix-section {
    padding: 6rem 0;
    background-color: #050c18;
}

.gov-matrix-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.5fr;
    gap: 2rem;
}

.gov-matrix-col {
    background: rgba(3, 9, 20, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    padding: 2.5rem 2rem;
}

.gov-matrix-header {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.gov-indicators-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gov-indicators-list li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.gov-indicators-list li::before {
    content: "•";
    color: var(--color-gold);
    font-size: 1.2rem;
}

.gov-reveal-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

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

.gov-reveal-icon {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    border-radius: 50% !important;
    border: 1px solid var(--color-gold) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.gov-reveal-icon svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    stroke: var(--color-gold) !important;
    flex-shrink: 0 !important;
}

.gov-reveal-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.gov-reveal-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.gov-outputs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gov-output-card {
    background: rgba(5, 12, 24, 0.8);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 6px;
    padding: 1.2rem 1rem;
    text-align: center;
}

.gov-output-icon {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    margin: 0 auto 0.6rem auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.gov-output-icon svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    stroke: var(--color-gold) !important;
    flex-shrink: 0 !important;
}

.gov-output-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.gov-output-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .gov-maturity-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gov-matrix-grid {
        grid-template-columns: 1fr;
    }
    .gov-outputs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gov-maturity-grid {
        grid-template-columns: 1fr;
    }
    .gov-indicators-list {
        grid-template-columns: 1fr;
    }
    .gov-outputs-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== DESTINATION FLOW PAGE ==================== */
.flow-examine-section {
    padding: 6rem 0;
    background-color: #030811;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.flow-examine-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.flow-examine-left h2 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.flow-examine-left p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.flow-examine-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flow-examine-bullets li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.flow-examine-bullets li::before {
    content: "•";
    color: var(--color-gold);
    font-size: 1.4rem;
}

.flow-examine-right-header {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 2rem;
}

.flow-examine-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.flow-examine-icon-box {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    border-radius: 6px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(5, 12, 24, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-examine-icon-box svg {
    width: 22px !important;
    height: 22px !important;
    stroke: var(--color-gold) !important;
}

.flow-examine-num {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-right: 0.5rem;
}

.flow-examine-title {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.flow-examine-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Map Process Flow Section */
.flow-map-section {
    padding: 6rem 0;
    background-color: #050c18;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.flow-map-box {
    background: rgba(3, 9, 20, 0.8);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 8px;
    padding: 3.5rem 2.5rem;
    text-align: center;
}

.flow-map-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 3.5rem;
}

.flow-map-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3rem;
}

.flow-map-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.flow-map-circle {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    min-height: 64px !important;
    border-radius: 50%;
    border: 1px solid var(--color-gold);
    background: rgba(5, 12, 24, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.flow-map-circle:hover {
    transform: scale(1.08);
    border-color: #f3d69b;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.flow-map-circle svg {
    width: 28px !important;
    height: 28px !important;
    stroke: var(--color-gold) !important;
}

.flow-map-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
}

.flow-map-arrow {
    color: var(--color-gold);
    font-size: 1.6rem;
    opacity: 0.7;
    flex-shrink: 0;
}

.flow-map-tagline {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

/* Outputs grid 6-col for flow */
.flow-outputs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.flow-output-card {
    background: rgba(5, 12, 24, 0.8);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 6px;
    padding: 1.6rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.flow-output-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.flow-output-icon {
    width: 32px !important;
    height: 32px !important;
    margin: 0 auto 0.8rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-output-icon svg {
    width: 28px !important;
    height: 28px !important;
    stroke: var(--color-gold) !important;
}

.flow-output-title {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.flow-output-desc {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
}

@media (max-width: 1024px) {
    .flow-examine-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .flow-outputs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .flow-map-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .flow-outputs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .flow-map-steps {
        flex-direction: column;
    }
    .flow-map-arrow {
        transform: rotate(90deg);
        margin: 0.4rem 0;
    }
}

/* ==================== TOURISM VALUE PAGE ==================== */
.val-dimensions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.val-dimension-card {
    background: rgba(5, 12, 24, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    padding: 2rem 1.4rem;
    text-align: center;
    transition: all 0.3s ease;
}

.val-dimension-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.val-dimension-icon {
    width: 48px !important;
    height: 48px !important;
    margin: 0 auto 1.2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.val-dimension-icon svg {
    width: 32px !important;
    height: 32px !important;
    stroke: var(--color-gold) !important;
}

.val-dimension-title {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.val-dimension-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.val-dimension-list li {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.val-dimension-list li::before {
    content: "•";
    color: var(--color-gold);
    font-size: 1.1rem;
}

/* Shift table styles */
.val-shift-box {
    background: rgba(3, 9, 20, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    padding: 2.5rem 2rem;
}

.val-shift-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-gold);
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    margin-bottom: 1.2rem;
}

.val-shift-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.val-shift-row:last-child {
    border-bottom: none;
}

.val-shift-from {
    color: rgba(255, 255, 255, 0.7);
}

.val-shift-arrow {
    color: var(--color-gold);
    font-size: 1.1rem;
}

.val-shift-to {
    color: #ffffff;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .val-dimensions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .val-dimensions-grid {
        grid-template-columns: 1fr;
    }
    .val-shift-row {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        text-align: center;
    }
    .val-shift-arrow {
        transform: rotate(90deg);
    }
}

/* ==================== VISITOR IMPACT INDEX PAGE ==================== */
.idx-architecture-box {
    background: rgba(3, 9, 20, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
}

.idx-architecture-flow {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 1.5rem 0;
}

.idx-arch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.idx-arch-icon {
    width: 44px !important;
    height: 44px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.idx-arch-icon svg {
    width: 32px !important;
    height: 32px !important;
    stroke: var(--color-gold) !important;
}

.idx-arch-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
}

.idx-arch-operator {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--color-gold);
    font-weight: 300;
}

.idx-arch-result-badge {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, rgba(5, 12, 24, 0.9) 100%);
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.25);
}

.idx-arch-result-text {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    line-height: 1.2;
}

/* Reveal Flex layout */
.idx-reveal-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    background: rgba(3, 9, 20, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
}

.idx-reveal-img-box {
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.idx-reveal-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Example Indicators 4-Col Grid */
.idx-indicators-box {
    background: rgba(3, 9, 20, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    padding: 2.5rem 2rem;
}

.idx-indicators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.idx-indicator-col-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.idx-indicator-col-header svg {
    width: 26px !important;
    height: 26px !important;
    stroke: var(--color-gold) !important;
    margin-bottom: 0.5rem;
}

/* Layout Split: Left main area vs Right Research Outputs sidebar */
.idx-main-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .idx-main-split {
        grid-template-columns: 1fr;
    }
    .idx-indicators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .idx-reveal-flex {
        grid-template-columns: 1fr;
    }
    .idx-indicators-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ABOUT PAGE STYLING (Adriatic Ritual Luxury Aesthetic)
   ========================================================================== */

/* --- 1. Hero Section --- */
.about-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 10rem 0 6rem;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(3, 9, 20, 0.96) 0%, rgba(3, 9, 20, 0.85) 45%, rgba(3, 9, 20, 0.35) 100%),
                linear-gradient(0deg, rgba(3, 9, 20, 1) 0%, rgba(3, 9, 20, 0) 25%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 720px;
}

.about-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5.5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.2rem;
}

.about-hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 400;
    line-height: 1.35;
    color: var(--color-offwhite);
    margin-bottom: 1.5rem;
}

.about-hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 620px;
}

.about-hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-gold-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2.2rem;
    background-color: var(--color-gold);
    border: 1px solid var(--color-gold);
    color: var(--bg-primary);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-gold-solid:hover {
    background-color: #dfb76c;
    border-color: #dfb76c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25);
    color: var(--bg-primary);
}

.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2.2rem;
    background: rgba(6, 14, 29, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.45);
    color: var(--color-offwhite);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 4px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.btn-gold-outline:hover {
    background: rgba(197, 160, 89, 0.12);
    border-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* --- Section Dividers & Headers --- */
.about-section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    text-align: center;
}

.about-section-divider .line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.6), transparent);
}

.about-section-divider h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* --- 2. What Adriatic Ritual is Section --- */
.about-what-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.about-what-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: center;
}

.about-what-img-box {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.25);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    height: 480px;
}

.about-what-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-what-img-box:hover img {
    transform: scale(1.03);
}

.about-what-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.about-what-intro {
    font-size: 0.98rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
}

.about-value-props-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    margin-top: 2.2rem;
}

.about-value-prop-card {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}

.about-prop-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.05);
    color: var(--color-gold);
    transition: var(--transition);
}

.about-value-prop-card:hover .about-prop-icon {
    border-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.15);
    transform: scale(1.08);
}

.about-prop-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-gold);
}

.about-prop-text h4 {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.about-prop-text p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--color-muted);
}

/* --- 3. Rooted in the Adriatic Section --- */
.about-rooted-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.about-rooted-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.about-rooted-card {
    background: rgba(3, 9, 20, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 6px;
    padding: 2.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.about-rooted-card:hover {
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.about-rooted-top-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    margin-bottom: 1.4rem;
    background: rgba(197, 160, 89, 0.05);
}

.about-rooted-top-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-gold);
}

.about-rooted-card h3 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--color-white);
    margin-bottom: 0.8rem;
}

.about-rooted-card p {
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--color-muted);
    margin-bottom: 2rem;
    max-width: 340px;
}

.about-vector-illustration {
    width: 100%;
    height: 120px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.65;
    transition: opacity 0.4s ease;
}

.about-rooted-card:hover .about-vector-illustration {
    opacity: 0.95;
}

.about-vector-illustration svg {
    width: 100%;
    height: 100%;
    max-height: 110px;
}

/* --- 4. Our Mission Banner Section --- */
.about-mission-section {
    padding: 5rem 0;
    background: #030811;
}

.about-mission-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3.5rem;
    align-items: center;
    background: rgba(6, 14, 29, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 6px;
    padding: 3.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.about-mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-gold);
}

.about-mission-title-col {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 260px;
}

.about-mission-star {
    width: 48px;
    height: 48px;
    min-width: 48px;
}

.about-mission-star svg {
    width: 100%;
    height: 100%;
    fill: url(#gold-grad);
}

.about-mission-title-col h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--color-white);
    font-weight: 400;
}

.about-mission-text {
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    font-style: italic;
    border-left: 1px solid rgba(197, 160, 89, 0.2);
    padding-left: 3rem;
}

/* --- 5. Core Areas of Expertise --- */
.about-expertise-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.about-expertise-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.about-expertise-card {
    background: rgba(6, 14, 29, 0.55);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 6px;
    padding: 2.2rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.about-expertise-card:hover {
    border-color: var(--color-gold);
    background: rgba(6, 14, 29, 0.85);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.about-expertise-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 4px;
    margin-bottom: 1.4rem;
    background: rgba(197, 160, 89, 0.05);
    transition: var(--transition);
}

.about-expertise-card:hover .about-expertise-icon {
    border-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.15);
    transform: scale(1.05);
}

.about-expertise-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-gold);
}

.about-expertise-card h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.8rem;
    line-height: 1.35;
}

.about-expertise-card p {
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--color-muted);
}

/* --- 6. Our Ecosystem Model Section --- */
.about-model-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.about-model-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.about-model-step {
    background: rgba(3, 9, 20, 0.7);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 6px;
    padding: 2.2rem 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 240px;
    transition: var(--transition);
}

.about-model-step:hover {
    border-color: rgba(197, 160, 89, 0.45);
    transform: translateY(-3px);
}

.about-model-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 50%;
    margin-bottom: 1.2rem;
    background: rgba(197, 160, 89, 0.05);
}

.about-model-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-gold);
}

.about-model-step h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.6rem;
}

.about-model-step p {
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--color-muted);
}

.about-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.4rem;
    opacity: 0.6;
}

.about-model-footer-note {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 1.4rem 2rem;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 4px;
    background: rgba(3, 9, 20, 0.4);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* --- 7. Full-Width Panorama Landscape Banner --- */
.about-panorama-banner {
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.about-panorama-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-panorama-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(3, 9, 20, 0.6) 0%, rgba(3, 9, 20, 0) 35%, rgba(3, 9, 20, 0) 65%, rgba(3, 9, 20, 0.6) 100%);
    pointer-events: none;
}

/* --- 8. Our Intelligence Ecosystem --- */
.about-intel-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.about-intel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-intel-card {
    background: rgba(6, 14, 29, 0.55);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 6px;
    padding: 2.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.about-intel-card:hover {
    border-color: var(--color-gold);
    background: rgba(6, 14, 29, 0.85);
    transform: translateY(-4px);
}

.about-intel-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 4px;
    margin-bottom: 1.4rem;
    background: rgba(197, 160, 89, 0.05);
}

.about-intel-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-gold);
}

.about-intel-card h3 {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.about-intel-card p {
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--color-muted);
}

.about-intel-disclaimer {
    text-align: center;
    font-size: 0.84rem;
    color: var(--color-muted);
    font-style: italic;
}

/* --- 9. Locations / Operations Triplet Cards --- */
.about-locations-section {
    padding: 5rem 0 6rem;
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.about-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.about-location-card {
    background: rgba(3, 9, 20, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.about-location-card:hover {
    border-color: rgba(197, 160, 89, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.about-loc-img-box {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.about-loc-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-location-card:hover .about-loc-img-box img {
    transform: scale(1.05);
}

.about-loc-body {
    padding: 1.8rem 1.6rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.about-loc-title {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.about-loc-desc {
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--color-muted);
}

/* --- 10. Company & Legal Identity + Quote Section --- */
.about-legal-quote-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

.about-legal-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 3.5rem;
    align-items: stretch;
}

.about-legal-col {
    display: flex;
    flex-direction: column;
}

.about-legal-header {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.8rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.about-legal-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(6, 14, 29, 0.4);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 6px;
    overflow: hidden;
}

.about-legal-table tr {
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

.about-legal-table tr:last-child {
    border-bottom: none;
}

.about-legal-table td {
    padding: 1.2rem 1.4rem;
    font-size: 0.88rem;
    line-height: 1.5;
}

.about-legal-table td.label-cell {
    width: 32%;
    color: var(--color-muted);
    font-family: var(--font-sans);
    font-weight: 500;
    border-right: 1px solid rgba(197, 160, 89, 0.15);
    background: rgba(3, 9, 20, 0.3);
}

.about-legal-table td.value-cell {
    color: var(--color-white);
    font-family: var(--font-sans);
}

.about-quote-box {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.25);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 3.5rem;
    min-height: 280px;
}

.about-quote-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 9, 20, 0.88) 0%, rgba(3, 9, 20, 0.65) 100%);
}

.about-quote-inner {
    position: relative;
    z-index: 2;
}

.about-quote-star {
    width: 36px;
    height: 36px;
    margin-bottom: 1.5rem;
}

.about-quote-star svg {
    width: 100%;
    height: 100%;
    fill: url(#gold-grad);
}

.about-quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    line-height: 1.35;
    color: var(--color-white);
    font-weight: 400;
}

/* --- 11. Pre-Footer CTA Banner --- */
.about-prefooter-section {
    padding: 5rem 0;
    background: #02060e;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.about-prefooter-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-prefooter-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.about-prefooter-star {
    width: 48px;
    height: 48px;
    min-width: 48px;
}

.about-prefooter-star svg {
    width: 100%;
    height: 100%;
    fill: url(#gold-grad);
}

.about-prefooter-title {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 2.4vw, 2.2rem);
    color: var(--color-white);
    line-height: 1.35;
    font-weight: 400;
}

.about-prefooter-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* --- Responsive Media Queries for About Page --- */
@media (max-width: 1200px) {
    .about-expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-intel-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-model-flow {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .about-flow-arrow {
        display: none;
    }
}

@media (max-width: 992px) {
    .about-what-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-what-img-box {
        height: 360px;
    }
    .about-rooted-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-mission-box {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding: 2.5rem;
    }
    .about-mission-text {
        border-left: none;
        border-top: 1px solid rgba(197, 160, 89, 0.2);
        padding-left: 0;
        padding-top: 1.5rem;
    }
    .about-locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-legal-quote-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-prefooter-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-prefooter-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 0 4rem;
        min-height: auto;
    }
    .about-value-props-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-expertise-grid {
        grid-template-columns: 1fr;
    }
    .about-model-flow {
        grid-template-columns: 1fr;
    }
    .about-intel-grid {
        grid-template-columns: 1fr;
    }
    .about-prefooter-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .about-prefooter-buttons {
        width: 100%;
        flex-direction: column;
    }
    .about-prefooter-buttons a {
        width: 100%;
        text-align: center;
    }
}









/* ==========================================================================
   FINAL RESPONSIVE / DISPLAY QA OVERRIDES — 2026-09
   ========================================================================== */
html, body { max-width: 100%; }
img, svg, video { max-width: 100%; }

/* Keep the fixed header above the mobile drawer so the close control remains usable. */
header { z-index: 10010; }
.mobile-nav-overlay {
    z-index: 10000;
    overflow-y: auto;
    overscroll-behavior: contain;
}

/* The menu icon uses two centered strokes; keep a proper X in the open state. */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
    opacity: 1;
}
.nav-toggle.active span:nth-child(2) {
    transform: translateY(-50%) rotate(-45deg);
    opacity: 1;
}
.nav-toggle span:nth-child(3) { display: none; }

/* Prevent long headings/buttons/URLs from forcing horizontal overflow. */
h1, h2, h3, p, a, button, .logo-title, .logo-subtitle {
    overflow-wrap: break-word;
}

@media (max-width: 992px) {
    .pillars-bar-4 .pillars-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1.4rem !important;
        padding-right: 1.4rem !important;
    }
    .nav-container {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .logo { min-width: 0; max-width: calc(100% - 116px); }
    .logo-text { min-width: 0; }
    .logo-title { font-size: clamp(.92rem, 3.8vw, 1.1rem); }
    .logo-subtitle { font-size: .5rem; max-width: 128px; }
    .header-right { gap: .25rem; }
    .lang-selector { padding: .25rem; font-size: .72rem; }
    .nav-toggle { width: 34px; min-width: 40px; margin-left: .2rem; }

    .mobile-nav-overlay {
        align-items: flex-start;
        padding-top: 5.75rem;
        padding-bottom: 2rem;
    }
    .mobile-nav-menu { padding-top: .25rem; padding-bottom: 2rem; }
    .mobile-nav-item { margin: .45rem 0; }
    .mobile-nav-link { min-height: 42px; font-size: clamp(1.22rem, 6vw, 1.65rem); }

    .hero,
    .philosophy-hero,
    .article-hero,
    .report-hero,
    .guide-hero,
    .invest-hero {
        min-height: 82svh !important;
        padding-top: 6.5rem;
        padding-bottom: 3rem;
    }
    .hero-container { padding-top: 2rem; padding-bottom: 2rem; }
    .hero-title,
    .philosophy-hero h1,
    .article-hero h1,
    .report-hero h1,
    .guide-hero h1,
    .invest-hero h1 {
        font-size: clamp(2.25rem, 10vw, 3.35rem) !important;
        line-height: 1.05 !important;
        max-width: 100%;
    }
    .hero-description, .hero-subtitle { max-width: 100%; }
    .hero-actions { width: 100%; gap: .85rem; }
    .hero-actions a { max-width: 100%; }

    .pillars-bar-4 .pillars-grid { grid-template-columns: 1fr; }
    .pillar-card { min-width: 0; }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1.05rem !important;
        padding-right: 1.05rem !important;
    }
    .logo { max-width: calc(100% - 105px); }
    .logo-icon { width: 1.9rem; height: 1.9rem; margin-right: .55rem; }
    .logo-title { font-size: .88rem; letter-spacing: .04em; }
    .logo-subtitle { display: none; }
    .hero-title,
    .philosophy-hero h1,
    .article-hero h1,
    .report-hero h1,
    .guide-hero h1,
    .invest-hero h1 {
        font-size: clamp(2rem, 10.5vw, 2.7rem) !important;
    }
    .btn-solid-gold, .btn-hero-outline, .btn-gold-solid, .btn-gold-outline {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: center;
    }
}
