/* ============================================
   TARANIS CAPITAL — COMPREHENSIVE STYLESHEET
   Consolidated from all mockups: homepage, who-we-are, insights
   ============================================ */

/* ============================================
   DESIGN SYSTEM & VARIABLES
   ============================================ */
:root {
  /* Primary palette */
  --tc-green-dark: #2c3e35;
  --tc-green-mid: #3a5247;
  --tc-green-light: #4a6459;
  --tc-gold: #c9a84c;
  --tc-gold-light: #d4b65e;
  --tc-gold-muted: rgba(201, 168, 76, 0.15);

  /* Neutrals */
  --tc-white: #ffffff;
  --tc-off-white: #f5f6f7;
  --tc-grey-light: #e8eaec;
  --tc-grey-mid: #cfd3d7;
  --tc-grey-dark: #606e79;
  --tc-charcoal: #374047;
  --tc-black: #1a1a1a;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --section-padding-sm: 60px 0;
  --container-max: 1200px;
  --container-padding: 0 40px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--tc-charcoal);
  background: var(--tc-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--tc-green-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo svg { width: 24px; height: 24px; }

.nav-brand-text {
  font-family: var(--font-display);
  color: var(--tc-white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-brand-sub {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--tc-gold);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tc-white);
  margin: 5px 0;
  transition: 0.3s;
}

/* Mobile nav dropdown */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--tc-green-dark);
  padding: 20px 40px;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ============================================
   HERO — HOMEPAGE
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--tc-green-dark) 0%, var(--tc-green-mid) 50%, var(--tc-green-dark) 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(201, 168, 76, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(155, 186, 195, 0.05) 0%, transparent 40%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(201, 168, 76, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 80px 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  color: var(--tc-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--tc-gold);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 28px;
  line-height: 1.4;
}

.hero-text {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tc-gold);
  color: var(--tc-green-dark);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  background: var(--tc-gold-light);
  transform: translateY(-1px);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(3px);
}

.hero-visual {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 80%;
  opacity: 0.08;
  background:
    radial-gradient(ellipse at center, var(--tc-gold) 0%, transparent 70%);
}

/* ============================================
   PAGE HERO — INNER PAGES
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--tc-green-dark) 0%, var(--tc-green-mid) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 168, 76, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--tc-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero .subtitle {
  font-size: 18px;
  color: var(--tc-gold);
  font-family: var(--font-display);
  font-style: italic;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.breadcrumb a { color: rgba(255,255,255,0.45); }
.breadcrumb a:hover { color: var(--tc-gold); }

/* ============================================
   STATS BAR
   ============================================ */
.stats {
  background: var(--tc-white);
  padding: 80px 0;
  border-bottom: 1px solid var(--tc-grey-light);
}

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

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--tc-off-white);
  border-radius: 8px;
  border: 1px solid var(--tc-grey-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--tc-gold);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--tc-charcoal);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 13px;
  color: var(--tc-grey-dark);
  line-height: 1.5;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: var(--section-padding);
}

.section--grey {
  background: var(--tc-off-white);
}

.section--dark {
  background: var(--tc-green-dark);
  color: var(--tc-white);
}

.section--green-mid {
  background: var(--tc-green-mid);
  color: var(--tc-white);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tc-gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--tc-charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section--dark .section-title,
.section--green-mid .section-title {
  color: var(--tc-white);
}

.section-subtitle {
  font-size: 17px;
  color: var(--tc-grey-dark);
  max-width: 600px;
  line-height: 1.65;
}

.section--dark .section-subtitle {
  color: rgba(255,255,255,0.65);
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */
.about-grid,
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 50px;
}

.about-image,
.intro-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--tc-grey-light);
  position: relative;
}

.about-image-placeholder,
.intro-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--tc-green-mid) 0%, var(--tc-green-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.about-content h3,
.intro-text h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--tc-charcoal);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p,
.intro-text p {
  color: var(--tc-grey-dark);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tc-gold);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-top: 12px;
  transition: gap 0.3s ease;
}

.text-link:hover {
  gap: 12px;
  color: var(--tc-gold-light);
}

/* ============================================
   VALUES GRID
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.value-card {
  background: var(--tc-white);
  border-radius: 8px;
  padding: 36px 32px;
  border: 1px solid var(--tc-grey-light);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--tc-charcoal);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--tc-grey-dark);
  line-height: 1.65;
}

.value-icon {
  width: 44px;
  height: 44px;
  background: var(--tc-gold-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.value-icon svg { width: 22px; height: 22px; color: var(--tc-gold); }

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
  align-items: start;
}

.team-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.team-card-link .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card {
  background: var(--tc-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--tc-grey-light);
  transition: all 0.3s ease;
}

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

.team-photo {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--tc-grey-light), var(--tc-grey-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tc-grey-dark);
  font-size: 13px;
}

.team-info {
  padding: 24px;
}

.team-info h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--tc-charcoal);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--tc-gold);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  color: var(--tc-grey-dark);
  line-height: 1.6;
}

.team-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--tc-grey-light);
}

.team-socials a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--tc-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tc-grey-dark);
  transition: all 0.3s ease;
}

.team-socials a:hover {
  background: var(--tc-gold-muted);
  color: var(--tc-gold);
}

.team-socials svg { width: 16px; height: 16px; }

/* ============================================
   BOARD GRID
   ============================================ */
.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.board-card {
  background: var(--tc-white);
  border-radius: 8px;
  padding: 28px 24px;
  border: 1px solid var(--tc-grey-light);
  text-align: center;
}

.board-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tc-grey-light), var(--tc-grey-mid));
  margin: 0 auto 16px;
}

.board-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--tc-charcoal);
  margin-bottom: 4px;
}

.board-card .team-role {
  margin-bottom: 0;
}

/* ============================================
   FOCUS / SERVICES CARDS
   ============================================ */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.focus-card {
  background: var(--tc-white);
  border-radius: 8px;
  padding: 36px 32px;
  border: 1px solid var(--tc-grey-light);
  transition: all 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: var(--tc-grey-mid);
}

.focus-icon {
  width: 48px;
  height: 48px;
  background: var(--tc-gold-muted);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.focus-icon svg {
  width: 24px;
  height: 24px;
  color: var(--tc-gold);
}

.focus-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--tc-charcoal);
  margin-bottom: 10px;
}

.focus-card p {
  font-size: 14px;
  color: var(--tc-grey-dark);
  line-height: 1.6;
}

/* ============================================
   QUOTE / BANNER
   ============================================ */
.quote-banner {
  background: var(--tc-green-mid);
  padding: 80px 0;
  text-align: center;
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  color: var(--tc-gold);
  font-style: italic;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============================================
   EXPLORE MORE / CTA CARDS
   ============================================ */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.explore-card {
  background: var(--tc-white);
  border-radius: 8px;
  padding: 36px 32px;
  border: 1px solid var(--tc-grey-light);
  transition: all 0.3s ease;
  cursor: pointer;
}

.explore-card:hover {
  border-color: var(--tc-green-mid);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.explore-card:hover h3 {
  color: var(--tc-green-mid);
}

.explore-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--tc-charcoal);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.explore-card p {
  font-size: 14px;
  color: var(--tc-grey-dark);
  line-height: 1.6;
}

/* ============================================
   CONTACT CTA SECTION
   ============================================ */
.contact-cta {
  background: var(--tc-green-dark);
  padding: 80px 0;
  text-align: center;
}

.contact-cta h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--tc-white);
  margin-bottom: 14px;
}

.contact-cta p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 30px;
  font-size: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--tc-gold);
  color: var(--tc-gold);
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: none;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--tc-gold);
  color: var(--tc-green-dark);
}

/* ============================================
   FEED / INSIGHTS PAGE — FILTERS
   ============================================ */
.feed-controls {
  background: var(--tc-white);
  border-bottom: 1px solid var(--tc-grey-light);
  padding: 20px 0;
  position: sticky;
  top: 72px;
  z-index: 100;
}

.feed-controls-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.feed-tabs {
  display: flex;
  gap: 4px;
  list-style: none;
}

.feed-tab {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--tc-grey-dark);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  background: none;
}

.feed-tab:hover {
  background: var(--tc-off-white);
  color: var(--tc-charcoal);
}

.feed-tab.active {
  background: var(--tc-green-dark);
  color: var(--tc-white);
}

.feed-info {
  font-size: 13px;
  color: var(--tc-grey-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.feed-info svg { width: 14px; height: 14px; opacity: 0.6; }

/* ============================================
   NEWS FEED LAYOUT
   ============================================ */
.feed-section {
  padding: 40px 0 100px;
}

.feed-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.feed-main { display: flex; flex-direction: column; gap: 20px; }

.feed-card {
  background: var(--tc-white);
  border-radius: 8px;
  border: 1px solid var(--tc-grey-light);
  padding: 28px 32px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feed-card:hover {
  border-color: var(--tc-grey-mid);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transform: translateY(-1px);
}

.feed-card-source {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.feed-source-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--tc-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feed-source-icon svg { width: 14px; height: 14px; color: var(--tc-gold); }

.feed-source-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--tc-gold);
  letter-spacing: 0.02em;
}

.feed-source-dot {
  width: 3px;
  height: 3px;
  background: var(--tc-grey-mid);
  border-radius: 50%;
}

.feed-source-time {
  font-size: 12px;
  color: var(--tc-grey-dark);
}

.feed-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--tc-charcoal);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.feed-card:hover h3 { color: var(--tc-green-mid); }

.feed-card p {
  font-size: 14px;
  color: var(--tc-grey-dark);
  line-height: 1.65;
  margin-bottom: 14px;
}

.feed-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feed-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--tc-off-white);
  color: var(--tc-grey-dark);
  letter-spacing: 0.02em;
}

.feed-tag--fintech { background: #e8f4f8; color: #2980b9; }
.feed-tag--biotech { background: #e8f5e9; color: #27ae60; }
.feed-tag--vc { background: var(--tc-gold-muted); color: #9a7d2e; }
.feed-tag--mena { background: #fce4ec; color: #c0392b; }
.feed-tag--crypto { background: #f3e5f5; color: #8e44ad; }

.feed-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--tc-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.feed-read-more svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.feed-card:hover .feed-read-more svg { transform: translateX(3px); }

/* ============================================
   SIDEBAR — FEED PAGE
   ============================================ */
.feed-sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-card {
  background: var(--tc-white);
  border-radius: 8px;
  border: 1px solid var(--tc-grey-light);
  padding: 24px;
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--tc-charcoal);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--tc-grey-light);
}

.sidebar-feed-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-feed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--tc-grey-light);
}

.sidebar-feed-item:last-child { border-bottom: none; }

.sidebar-feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sidebar-feed-dot--active { background: #27ae60; }
.sidebar-feed-dot--inactive { background: var(--tc-grey-mid); }

.sidebar-feed-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--tc-charcoal);
}

.sidebar-feed-count {
  font-size: 11px;
  color: var(--tc-grey-dark);
  margin-left: auto;
  background: var(--tc-off-white);
  padding: 2px 8px;
  border-radius: 10px;
}

.trending-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trending-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--tc-off-white);
  color: var(--tc-grey-dark);
  border: 1px solid var(--tc-grey-light);
  cursor: pointer;
  transition: all 0.2s ease;
}

.trending-tag:hover {
  background: var(--tc-gold-muted);
  border-color: var(--tc-gold);
  color: var(--tc-gold);
}

.sidebar-cta {
  background: var(--tc-green-dark);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  border: none;
}

.sidebar-cta h3 {
  color: var(--tc-white);
  border-bottom-color: rgba(255,255,255,0.1);
  font-size: 18px;
}

.sidebar-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 18px;
}

.sidebar-cta-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1.5px solid var(--tc-gold);
  color: var(--tc-gold);
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: none;
  cursor: pointer;
}

.sidebar-cta-btn:hover {
  background: var(--tc-gold);
  color: var(--tc-green-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--tc-black);
  padding: 60px 0 30px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

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

.footer-brand-text {
  font-family: var(--font-display);
  color: var(--tc-white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-brand-sub {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer h4 {
  color: var(--tc-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.6);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--tc-black);
  color: rgba(255,255,255,0.7);
  padding: 20px 0;
  z-index: 9999;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner p { margin: 0; max-width: 700px; }
.cookie-banner a { color: var(--tc-gold); text-decoration: underline; }

.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }

.cookie-btn {
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.cookie-btn--accept { background: var(--tc-gold); color: var(--tc-green-dark); }
.cookie-btn--accept:hover { background: var(--tc-gold-light); }
.cookie-btn--decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn--decline:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); }

@media (max-width: 768px) {
  .cookie-banner-inner { flex-direction: column; text-align: center; }
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-form-section { padding: 100px 0; }

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--tc-charcoal);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--tc-grey-dark);
  margin-bottom: 24px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--tc-gold-muted);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg { width: 20px; height: 20px; color: var(--tc-gold); }

.contact-detail-text { font-size: 15px; color: var(--tc-charcoal); }
.contact-detail-text a { color: var(--tc-gold); }
.contact-detail-text a:hover { color: var(--tc-gold-light); }

.contact-form {
  background: var(--tc-white);
  border-radius: 8px;
  padding: 40px;
  border: 1px solid var(--tc-grey-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--tc-charcoal);
  margin-bottom: 6px;
}

.contact-form input[type="email"],
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--tc-grey-light);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--tc-charcoal);
  background: var(--tc-white);
  transition: border-color 0.2s ease;
  margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--tc-gold);
  box-shadow: 0 0 0 3px var(--tc-gold-muted);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--tc-grey-mid);
}

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

.contact-form .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-form .checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--tc-gold);
  flex-shrink: 0;
}

.contact-form .checkbox-row label {
  font-size: 12px;
  font-weight: 400;
  color: var(--tc-grey-dark);
  margin-bottom: 0;
}

.contact-form .checkbox-row a { color: var(--tc-gold); text-decoration: underline; }

.contact-form .form-privacy {
  font-size: 12px;
  color: var(--tc-grey-dark);
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-form .form-privacy a { color: var(--tc-gold); text-decoration: underline; }

.contact-form button[type="submit"] {
  background: var(--tc-gold);
  color: var(--tc-green-dark);
  border: none;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.contact-form button[type="submit"]:hover {
  background: var(--tc-gold-light);
}

.contact-form .form-success {
  text-align: center;
  padding: 40px 20px;
}

.contact-form .form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--tc-charcoal);
  margin-bottom: 10px;
}

.contact-form .form-success p {
  color: var(--tc-grey-dark);
  font-size: 15px;
}

.g-recaptcha { margin-bottom: 20px; }

.breadcrumb-separator { margin: 0 8px; color: rgba(255,255,255,0.45); }

.contact-details {
  margin-top: 40px;
}

.contact-detail-content {
  font-size: 15px;
  color: var(--tc-charcoal);
}

.contact-detail-content a {
  color: var(--tc-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-content a:hover {
  color: var(--tc-gold-light);
}

.hero--page {
  background: linear-gradient(135deg, var(--tc-green-dark) 0%, var(--tc-green-mid) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  padding-top: 160px;
}

.hero--page::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201, 168, 76, 0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
}

.hero--page .container {
  position: relative;
  z-index: 2;
}

.hero--page h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--tc-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero--page .hero-subtitle {
  font-size: 18px;
  color: var(--tc-gold);
  font-family: var(--font-display);
  font-style: italic;
}

@media (max-width: 768px) {
  .contact-form-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .hero--page { padding: 120px 0 60px; padding-top: 120px; }
}

/* ============================================
   APPROACH PAGE
   ============================================ */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 50px;
}

.approach-text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--tc-charcoal);
  margin-bottom: 20px;
  line-height: 1.35;
}

.approach-text p {
  color: var(--tc-grey-dark);
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.7;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 50px;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--tc-grey-light);
}

.process-step:last-child { border-bottom: none; }

.step-number {
  width: 48px;
  height: 48px;
  background: var(--tc-gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--tc-gold);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--tc-charcoal);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--tc-grey-dark);
  line-height: 1.65;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .approach-grid { gap: 40px; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .approach-grid { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 48px 1fr; gap: 16px; }
}

/* ============================================
   FUNDS PAGE
   ============================================ */
.fund-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.fund-card {
  background: var(--tc-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--tc-grey-light);
  transition: all 0.3s ease;
}

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

.fund-card-header {
  background: var(--tc-green-dark);
  padding: 28px 32px;
  position: relative;
}

.fund-card-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--tc-white);
  margin-bottom: 6px;
}

.fund-card-header .fund-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--tc-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fund-card-body {
  padding: 28px 32px;
}

.fund-card-body p {
  font-size: 15px;
  color: var(--tc-grey-dark);
  line-height: 1.65;
  margin-bottom: 20px;
}

.fund-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fund-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--tc-charcoal);
}

.fund-highlights li svg {
  width: 18px;
  height: 18px;
  color: var(--tc-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.fund-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tc-gold);
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  transition: gap 0.3s ease;
}

.fund-link:hover { gap: 12px; color: var(--tc-gold-light); }
.fund-link svg { width: 16px; height: 16px; }

@media (max-width: 768px) {
  .fund-cards { grid-template-columns: 1fr; }
}

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

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--tc-green-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--tc-green-mid); }
.scroll-top svg { width: 20px; height: 20px; color: var(--tc-gold); }

/* Skip to content (accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--tc-gold);
  color: var(--tc-green-dark);
  padding: 8px 16px;
  z-index: 10000;
  font-size: 14px;
  font-weight: 600;
}

.skip-link:focus { top: 0; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .intro-grid { gap: 40px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feed-layout { grid-template-columns: 1fr; }
  .feed-sidebar { order: -1; flex-direction: row; flex-wrap: wrap; }
  .sidebar-card { flex: 1; min-width: 280px; }
}

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

  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }

  .hero { min-height: 70vh; }
  .hero-content { padding: 50px 0; }

  .page-hero { padding: 120px 0 60px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 32px; }

  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .focus-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .board-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .feed-tabs { flex-wrap: wrap; }
  .feed-controls-inner { flex-direction: column; align-items: flex-start; }
  .feed-sidebar { flex-direction: column; }

  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; gap: 16px; }
}
