/* ============================================
   NUFANEST — STYLES
   Brand: Apple Clean × Eco Modern × Social Impact
   ============================================ */

:root {
  /* Brand Colors */
  --forest: #1F5D3B;
  --forest-700: #194B30;
  --forest-800: #133923;
  --forest-soft: rgba(31, 93, 59, 0.1);
  --forest-line: rgba(31, 93, 59, 0.15);

  --sage: #7BAE7F;
  --sage-light: #A8C9AB;

  --cream-light: #F7F6F2;
  --cream: #ECE7DA;
  --cream-warm: #E2DBC8;

  --charcoal: #1E1E1E;
  --charcoal-soft: #2B2B2B;
  --charcoal-mute: #5A5A5A;

  --gold: #C7A86D;
  --gold-soft: #D9BE8A;
  --gold-deep: #A88950;

  /* Type */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2.5rem;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection {
  background: var(--forest);
  color: var(--cream-light);
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--forest); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--forest-700); }

/* ===== UTILS ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 3.5rem; } }

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.accent { color: var(--gold-deep); }
.accent-gold { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream-light);
}
.btn-primary:hover {
  background: var(--forest-700);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px -10px rgba(31, 93, 59, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: rgba(31, 93, 59, 0.3);
}
.btn-ghost:hover {
  background: var(--forest);
  color: var(--cream-light);
  border-color: var(--forest);
}

.btn-cream {
  background: var(--cream-light);
  color: var(--forest);
}
.btn-cream:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream-light);
  border-color: rgba(247, 246, 242, 0.3);
}
.btn-outline-light:hover {
  background: rgba(247, 246, 242, 0.1);
}

/* ===== TYPOGRAPHY HELPERS ===== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  background: var(--forest-soft);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(31, 93, 59, 0.7);
}
.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  margin-right: 0.75rem;
  opacity: 0.45;
}
.eyebrow-light { color: rgba(247, 246, 242, 0.7); }
.eyebrow-center { justify-content: center; display: flex; }

/* ===== SECTIONS BASE ===== */
.section {
  padding: 6rem 0;
  position: relative;
}
@media (min-width: 768px) { .section { padding: 9rem 0; } }

.section-header { max-width: 760px; margin-bottom: 4rem; }

.section-title {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
  color: var(--forest);
  font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem);
  line-height: 1.05;
  margin-top: 1.25rem;
  text-wrap: balance;
}

.section-title-light { color: var(--cream-light); }
.section-title-center { text-align: center; }

.section-lead {
  margin-top: 1.5rem;
  color: rgba(30, 30, 30, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
  text-wrap: pretty;
}
.section-lead-light { color: rgba(247, 246, 242, 0.7); }

.section-cream {
  background: rgba(236, 231, 218, 0.5);
  border-top: 1px solid var(--forest-line);
  border-bottom: 1px solid var(--forest-line);
}

.section-dark {
  background: var(--forest);
  color: var(--cream-light);
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

@keyframes pulseSlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: all 0.4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(247, 246, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--forest-line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-mark {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  object-fit: contain;
}
img.logo-mark {
  /* When the mark is a raster image (e.g. PNG logo) */
  display: block;
}
.logo-light img.logo-mark {
  /* Invert dark green logo to cream color on dark backgrounds */
  filter: brightness(0) invert(1) opacity(0.92);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--forest);
}
.logo-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.7rem;
  margin-top: 0.15rem;
  color: var(--sage);
}
.logo-light .logo-name { color: var(--cream-light); }
.logo-light .logo-tagline { color: var(--sage-light); }

.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(30, 30, 30, 0.75);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--forest); }

.nav-cta { display: none; padding: 0.7rem 1.25rem; font-size: 0.875rem; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  background: var(--forest-soft);
  color: var(--forest);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: var(--cream-light);
  border-top: 1px solid var(--forest-line);
}
.nav-mobile.open { max-height: 500px; }
.nav-mobile .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.5rem 0;
}
.nav-mobile a:hover { color: var(--forest); }
.nav-mobile-cta {
  justify-content: center;
  margin-top: 0.5rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 9rem 0 6rem;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 11rem 0 8rem; } }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, var(--cream-light), var(--cream-light), rgba(236, 231, 218, 0.6));
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-blob-1 {
  top: -8rem;
  right: -6rem;
  width: 480px;
  height: 480px;
  background: rgba(123, 174, 127, 0.2);
}
.hero-blob-2 {
  top: 33%;
  left: -8rem;
  width: 420px;
  height: 420px;
  background: rgba(31, 93, 59, 0.15);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 93, 59, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 93, 59, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  opacity: 0.4;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--forest);
  font-size: clamp(2.6rem, 6vw + 0.5rem, 5.5rem);
  line-height: 1.02;
  text-wrap: balance;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-sub {
  margin: 2rem auto 0;
  text-align: center;
  font-size: clamp(1rem, 0.5vw + 0.95rem, 1.125rem);
  color: rgba(30, 30, 30, 0.7);
  max-width: 640px;
  line-height: 1.7;
  text-wrap: pretty;
}

.hero-cta {
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }

.hero-small {
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(30, 30, 30, 0.5);
  max-width: 540px;
}

.hero-features {
  margin: 5rem auto 0;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--forest-line);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forest-line);
  overflow: hidden;
}
@media (min-width: 768px) { .hero-features { grid-template-columns: repeat(4, 1fr); } }

.feature {
  background: var(--cream-light);
  padding: 1.5rem;
  transition: background 0.3s;
}
@media (min-width: 768px) { .feature { padding: 1.75rem; } }
.feature:hover { background: var(--cream); }
.feature-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.feature-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(31, 93, 59, 0.5);
}
.feature-tag {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
}
.feature-label {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--forest);
  font-size: 1.05rem;
  line-height: 1.2;
}
.feature-line {
  display: block;
  width: 2rem;
  height: 1px;
  background: rgba(31, 93, 59, 0.3);
  margin-top: 1.25rem;
  transition: width 0.5s;
}
.feature:hover .feature-line { width: 4rem; }

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  margin-top: 2.5rem;
  border-radius: 9999px;
  background: var(--forest-soft);
  border: 1px solid var(--forest-line);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--forest);
}
.about-badge .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--forest);
  animation: pulseSlow 3s infinite;
}

.about-right {
  padding-top: 0.5rem;
}
.about-right p {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(30, 30, 30, 0.8);
  text-wrap: pretty;
}
@media (min-width: 768px) { .about-right p { font-size: 1.05rem; } }
.about-right p:first-child { margin-top: 0; }
.about-right strong {
  color: var(--forest);
  font-weight: 500;
}
.about-right em.serif { color: var(--forest); }

.about-right blockquote {
  margin-top: 2.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(199, 168, 109, 0.6);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--forest);
  text-wrap: balance;
}
@media (min-width: 768px) {
  .about-right blockquote { font-size: 1.6rem; }
}

/* ============================================
   SERVICES / PILLARS
   ============================================ */
.leaf-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60 90 C 56 75, 46 65, 30 60 C 46 55, 56 45, 60 30 C 64 45, 74 55, 90 60 C 74 65, 64 75, 60 90 Z' fill='%231F5D3B'/%3E%3C/svg%3E");
}

.pillar-grid {
  position: relative;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.pillar-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--forest-line);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) { .pillar-card { padding: 2.25rem; } }

.pillar-card:hover {
  border-color: rgba(31, 93, 59, 0.3);
  box-shadow: 0 4px 24px -8px rgba(31, 93, 59, 0.15);
  transform: translateY(-4px);
}

.pillar-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.pillar-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: var(--forest);
  color: var(--cream-light);
  display: grid;
  place-items: center;
  transition: transform 0.5s;
}
.pillar-card:hover .pillar-icon { transform: rotate(-6deg); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(31, 93, 59, 0.4);
}

.pillar-card h3 {
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest);
  font-size: 1.65rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.pillar-summary {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: rgba(30, 30, 30, 0.7);
  line-height: 1.65;
  text-wrap: pretty;
}

.pillar-list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem 1rem;
}
@media (min-width: 600px) {
  .pillar-list { grid-template-columns: repeat(2, 1fr); }
}
.pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(30, 30, 30, 0.75);
}
.pillar-list li::before {
  content: '';
  margin-top: 0.5rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-deep);
  flex-shrink: 0;
}

.pillar-foot {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--forest-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(31, 93, 59, 0.6);
}
.arrow-circle {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--forest-soft);
  display: grid;
  place-items: center;
  color: var(--forest);
  transition: all 0.3s;
}
.pillar-card:hover .arrow-circle {
  background: var(--forest);
  color: var(--cream-light);
}

/* ============================================
   JOURNEY
   ============================================ */
.journey {
  position: relative;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .journey {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

.journey-line {
  display: none;
}
@media (min-width: 1024px) {
  .journey-line {
    display: block;
    position: absolute;
    top: 1.75rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(31, 93, 59, 0.3), transparent);
  }
}

.journey-step {
  position: relative;
}

.journey-node {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--cream-light);
  border: 1px solid var(--forest-line);
  display: grid;
  place-items: center;
  color: var(--forest);
  box-shadow: 0 4px 24px -8px rgba(31, 93, 59, 0.15);
}
.journey-num {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream-light);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.625rem;
  display: grid;
  place-items: center;
}

.journey-step h4 {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest);
  font-size: 1.15rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.journey-step p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(30, 30, 30, 0.7);
  line-height: 1.65;
  text-wrap: pretty;
}

/* ============================================
   PROJECTS / DARK SECTION
   ============================================ */
.dark-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.dark-bg::before,
.dark-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.dark-bg::before {
  top: -10rem;
  right: -8rem;
  width: 500px;
  height: 500px;
  background: rgba(123, 174, 127, 0.2);
}
.dark-bg::after {
  bottom: -10rem;
  left: -8rem;
  width: 500px;
  height: 500px;
  background: rgba(92, 156, 112, 0.3);
}

.project-grid {
  position: relative;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    grid-auto-flow: dense;
    gap: 1.5rem;
    align-items: stretch;
  }
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(247, 246, 242, 0.1);
  background: linear-gradient(135deg, var(--forest), var(--forest-700));
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: all 0.5s;
}
@media (min-width: 768px) { .project-card { padding: 2rem; } }

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 246, 242, 0.25);
  box-shadow: 0 10px 40px -12px rgba(31, 93, 59, 0.35);
}

.project-feature {
  background: linear-gradient(135deg, var(--forest), var(--forest-700));
}
@media (min-width: 1024px) {
  .project-feature {
    grid-column: span 2;
  }
}

.project-watermark {
  position: absolute;
  right: -3rem;
  bottom: -8rem;
  width: 18rem;
  height: 18rem;
  color: rgba(247, 246, 242, 0.07);
  pointer-events: none;
}

.project-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.project-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(247, 246, 242, 0.15);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  color: var(--cream-light);
}
.project-tag {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(247, 246, 242, 0.7);
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  border: 1px solid rgba(247, 246, 242, 0.2);
}

.project-title,
.project-title-lg {
  position: relative;
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cream-light);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.project-title { font-size: 1.4rem; }
.project-title-lg { font-size: 2rem; }
@media (min-width: 768px) {
  .project-title { font-size: 1.5rem; }
  .project-title-lg { font-size: 2.5rem; }
}

.project-desc,
.project-desc-lg {
  position: relative;
  margin-top: 0.75rem;
  color: rgba(247, 246, 242, 0.8);
  line-height: 1.65;
  text-wrap: pretty;
}
.project-desc { font-size: 0.875rem; }
.project-desc-lg { font-size: 1rem; max-width: 28rem; }
@media (min-width: 768px) {
  .project-desc-lg { font-size: 1.125rem; }
}

.project-foot {
  position: relative;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247, 246, 242, 0.5);
}
.arrow-circle-light {
  background: rgba(247, 246, 242, 0.1);
  color: var(--cream-light);
}
.project-card:hover .arrow-circle-light {
  background: var(--cream-light);
  color: var(--forest);
}

/* ============================================
   VALUES
   ============================================ */
.values-header {
  display: grid;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .values-header {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.values-lead {
  color: rgba(30, 30, 30, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  text-wrap: pretty;
  max-width: 32rem;
}
@media (min-width: 1024px) {
  .values-lead { margin-left: auto; }
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--forest-line);
  border-radius: var(--radius-lg);
  border: 1px solid var(--forest-line);
  overflow: hidden;
}
@media (min-width: 600px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .value-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  background: var(--cream-light);
  padding: 2rem;
  transition: background 0.5s;
}
@media (min-width: 768px) { .value-card { padding: 2.25rem; } }
.value-card:hover { background: var(--cream); }

.value-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--forest-soft);
  color: var(--forest);
  display: grid;
  place-items: center;
  transition: all 0.5s;
}
.value-card:hover .value-icon {
  background: var(--forest);
  color: var(--cream-light);
}
.value-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(31, 93, 59, 0.4);
}

.value-card h3 {
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest);
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.value-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(30, 30, 30, 0.7);
  line-height: 1.65;
  text-wrap: pretty;
}

/* Heart to Heart */
.heart-block {
  margin-top: 7rem;
  text-align: center;
}
@media (min-width: 768px) { .heart-block { margin-top: 9rem; } }

.heart-text {
  max-width: 640px;
  margin: 2rem auto 0;
}
.heart-text p {
  margin-top: 1.25rem;
  color: rgba(30, 30, 30, 0.75);
  font-size: 1rem;
  line-height: 1.8;
  text-wrap: pretty;
}
@media (min-width: 768px) {
  .heart-text p { font-size: 1.125rem; }
}
.heart-text p:first-child { margin-top: 0; }

.heart-quote {
  margin-top: 1.75rem !important;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--forest) !important;
  font-size: 1.35rem !important;
  line-height: 1.4 !important;
}
@media (min-width: 768px) {
  .heart-quote { font-size: 1.6rem !important; }
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  padding: 5rem 0 7rem;
}
@media (min-width: 768px) { .cta-section { padding: 6rem 0 8rem; } }

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--forest);
  color: var(--cream-light);
  padding: 2.5rem;
}
@media (min-width: 768px) { .cta-card { padding: 4rem; } }
@media (min-width: 1024px) { .cta-card { padding: 5rem; } }

.cta-watermark {
  position: absolute;
  right: -6rem;
  bottom: -8rem;
  width: 32rem;
  height: 32rem;
  color: rgba(247, 246, 242, 0.05);
  pointer-events: none;
}

.cta-inner { position: relative; max-width: 760px; }

.cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--cream-light);
  font-size: clamp(2.25rem, 4.5vw + 0.5rem, 4.5rem);
  line-height: 1.02;
  margin-top: 1.25rem;
  text-wrap: balance;
}

.cta-sub {
  margin-top: 1.75rem;
  color: rgba(247, 246, 242, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 32rem;
  text-wrap: pretty;
}

.cta-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }

.cta-small {
  margin-top: 2.5rem;
  font-size: 0.78rem;
  color: rgba(247, 246, 242, 0.5);
  max-width: 28rem;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--cream-light);
  padding: 5rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.footer .container { position: relative; }

.footer-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 5fr 4fr 3fr;
    gap: 3rem;
  }
}

.footer-desc {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(247, 246, 242, 0.7);
  line-height: 1.65;
  max-width: 28rem;
}

.footer-social {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-social a {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(247, 246, 242, 0.15);
  display: grid;
  place-items: center;
  color: var(--cream-light);
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--cream-light);
  color: var(--forest);
  border-color: var(--cream-light);
}

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

.footer h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--cream-light);
  letter-spacing: 0.02em;
}
.footer ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.footer ul a {
  font-size: 0.875rem;
  color: rgba(247, 246, 242, 0.65);
  transition: color 0.3s;
}
.footer ul a:hover { color: var(--gold); }

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(247, 246, 242, 0.65);
}
.footer-contact ul li svg {
  margin-top: 0.15rem;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-tagline {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(247, 246, 242, 0.1);
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(247, 246, 242, 0.55);
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 3rem);
  line-height: 1.2;
  max-width: 56rem;
  text-wrap: balance;
}

.footer-bottom {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(247, 246, 242, 0.45);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; align-items: center; }
}

/* ============================================
   ADDITIONS — Sections Tambahan
   Mengikuti tema dasar: Forest × Cream × Gold
   Sora · Fraunces · Inter
   ============================================ */

/* ===== Philosophy Tag (About) ===== */
.philosophy-tag {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  background: rgba(199, 168, 109, 0.12);
  border: 1px solid rgba(199, 168, 109, 0.35);
}
.philosophy-tag-line {
  width: 1.5rem;
  height: 1px;
  background: var(--gold-deep);
}
.philosophy-tag-text {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--forest);
}
.philosophy-tag-text strong {
  color: var(--gold-deep);
  font-weight: 600;
}

/* ===== Project Focus (already exists in dark project card, ensure styling) ===== */
.project-focus {
  position: relative;
  margin-top: 1.75rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: rgba(247, 246, 242, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(247, 246, 242, 0.12);
}
.project-focus-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(247, 246, 242, 0.6);
}
.project-focus-list {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem 1rem;
}
@media (min-width: 600px) {
  .project-focus-list { grid-template-columns: repeat(2, 1fr); }
}
.project-focus-list li {
  position: relative;
  padding-left: 0.9rem;
  font-size: 0.82rem;
  color: rgba(247, 246, 242, 0.85);
  line-height: 1.45;
}
.project-focus-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================
   LEARNING HUB
   ============================================ */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 600px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .hub-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
@media (min-width: 1100px) { .hub-grid { grid-template-columns: repeat(4, 1fr); } }

.hub-card {
  background: var(--cream-light);
  border: 1px solid var(--forest-line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 93, 59, 0.3);
  box-shadow: 0 8px 28px -10px rgba(31, 93, 59, 0.18);
}
.hub-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: var(--forest-soft);
  color: var(--forest);
  display: grid;
  place-items: center;
  transition: all 0.4s;
}
.hub-card:hover .hub-card-icon {
  background: var(--forest);
  color: var(--cream-light);
  transform: rotate(-4deg);
}
.hub-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-top: 0.35rem;
}
.hub-card p {
  font-size: 0.85rem;
  color: rgba(30, 30, 30, 0.7);
  line-height: 1.6;
}

.hub-card-cta {
  background: linear-gradient(135deg, var(--forest), var(--forest-700));
  border-color: var(--forest);
  color: var(--cream-light);
  justify-content: space-between;
}
.hub-card-cta h4 { color: var(--cream-light); }
.hub-card-cta p { color: rgba(247, 246, 242, 0.75); }
.hub-card-link {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: gap 0.3s;
}
.hub-card-cta:hover .hub-card-link { gap: 0.7rem; }

/* ============================================
   IMPACT
   ============================================ */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--forest-line);
  border: 1px solid var(--forest-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 4rem;
}
@media (min-width: 600px) { .impact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .impact-grid { grid-template-columns: repeat(4, 1fr); } }

.impact-stat {
  background: var(--cream-light);
  padding: 2.25rem 1.75rem;
  transition: background 0.4s;
}
.impact-stat:hover { background: #FBFAF6; }

.impact-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 5vw + 1rem, 4.25rem);
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: flex-start;
}
.impact-plus {
  font-size: 0.45em;
  color: var(--gold-deep);
  margin-left: 0.25rem;
  margin-top: 0.15rem;
  font-weight: 600;
}
.impact-label {
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.impact-desc {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: rgba(30, 30, 30, 0.65);
  line-height: 1.55;
}

.impact-stories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .impact-stories { grid-template-columns: repeat(3, 1fr); } }

.impact-story {
  padding: 1.75rem;
  border: 1px solid var(--forest-line);
  border-radius: var(--radius);
  background: var(--cream-light);
  transition: all 0.4s;
}
.impact-story:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 93, 59, 0.3);
  box-shadow: 0 8px 28px -10px rgba(31, 93, 59, 0.18);
}
.impact-story-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  font-weight: 600;
}
.impact-story h4 {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--forest);
  letter-spacing: -0.015em;
}
.impact-story p {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  color: rgba(30, 30, 30, 0.7);
  line-height: 1.65;
}

/* ============================================
   LEGAL & POLICY EDUCATION
   ============================================ */
.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .legal-layout {
    grid-template-columns: 5fr 7fr;
    gap: 3.5rem;
  }
}

.legal-intro {
  position: relative;
}
@media (min-width: 1024px) {
  .legal-intro { position: sticky; top: 6rem; }
}
.legal-intro-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  font-weight: 600;
}
.legal-intro h3 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2vw + 0.8rem, 1.95rem);
  color: var(--forest);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.legal-intro-desc {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: rgba(30, 30, 30, 0.7);
  line-height: 1.7;
}
.legal-intro-note {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  background: rgba(31, 93, 59, 0.08);
  border-radius: 9999px;
  font-size: 0.78rem;
  color: var(--forest);
}
.legal-intro-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-deep);
}

.legal-topics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 700px) { .legal-topics { grid-template-columns: repeat(2, 1fr); } }

.legal-topic {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream-light);
  border: 1px solid var(--forest-line);
  border-radius: var(--radius);
  transition: all 0.35s;
}
.legal-topic:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 168, 109, 0.5);
  box-shadow: 0 6px 24px -10px rgba(31, 93, 59, 0.18);
}
.legal-topic-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream-light);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
}
.legal-topic h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--forest);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.legal-topic p {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: rgba(30, 30, 30, 0.68);
  line-height: 1.55;
}

/* ============================================
   AI + FUTURE
   ============================================ */
.ai-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) { .ai-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ai-grid { grid-template-columns: repeat(4, 1fr); } }

.ai-card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius);
  background: rgba(247, 246, 242, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 246, 242, 0.12);
  transition: all 0.4s;
}
.ai-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 168, 109, 0.4);
  background: rgba(247, 246, 242, 0.09);
}
.ai-card-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.ai-card h4 {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--cream-light);
  letter-spacing: -0.015em;
}
.ai-card p {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: rgba(247, 246, 242, 0.7);
  line-height: 1.65;
}

/* ============================================
   COMMUNITY MOVEMENT
   ============================================ */
.movement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .movement-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .movement-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.movement-card {
  padding: 1.75rem;
  background: var(--cream-light);
  border: 1px solid var(--forest-line);
  border-radius: var(--radius);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.movement-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 93, 59, 0.3);
  box-shadow: 0 8px 28px -10px rgba(31, 93, 59, 0.18);
}
.movement-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: var(--forest-soft);
  color: var(--forest);
  display: grid;
  place-items: center;
  transition: all 0.4s;
}
.movement-card:hover .movement-icon {
  background: var(--forest);
  color: var(--cream-light);
  transform: rotate(-6deg);
}
.movement-card h4 {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--forest);
  letter-spacing: -0.015em;
}
.movement-card p {
  font-size: 0.9rem;
  color: rgba(30, 30, 30, 0.7);
  line-height: 1.6;
}

.movement-card-cta {
  background: linear-gradient(135deg, var(--charcoal-soft), var(--forest-800));
  border-color: transparent;
  color: var(--cream-light);
  justify-content: space-between;
}
.movement-card-cta h4 { color: var(--cream-light); }
.movement-card-cta p { color: rgba(247, 246, 242, 0.7); }
.movement-cta-link {
  margin-top: 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: gap 0.3s;
}
.movement-card-cta:hover .movement-cta-link { gap: 0.7rem; }

/* ============================================
   INSIGHT / MEDIA
   ============================================ */
.insight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 700px) { .insight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) {
  .insight-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
  }
}

.insight-card {
  padding: 1.75rem;
  background: var(--cream-light);
  border: 1px solid var(--forest-line);
  border-radius: var(--radius);
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 93, 59, 0.3);
  box-shadow: 0 8px 28px -10px rgba(31, 93, 59, 0.18);
}

.insight-card-feature {
  background: linear-gradient(135deg, var(--forest), var(--forest-700));
  border-color: var(--forest);
  color: var(--cream-light);
  min-height: 240px;
}
@media (min-width: 1100px) {
  .insight-card-feature { grid-column: span 2; grid-row: span 2; }
}
.insight-card-feature h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2vw + 0.8rem, 2rem);
  color: var(--cream-light);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.insight-card-feature p {
  font-size: 0.95rem;
  color: rgba(247, 246, 242, 0.78);
  line-height: 1.65;
  text-wrap: pretty;
}
.insight-card-feature .insight-meta { color: rgba(247, 246, 242, 0.55); margin-top: auto; }

.insight-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--gold-deep);
  padding: 0.3rem 0.7rem;
  background: rgba(199, 168, 109, 0.12);
  border-radius: 9999px;
  align-self: flex-start;
}
.insight-card-feature .insight-tag {
  color: var(--gold);
  background: rgba(247, 246, 242, 0.1);
  border: 1px solid rgba(247, 246, 242, 0.18);
}

.insight-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.insight-card p {
  font-size: 0.88rem;
  color: rgba(30, 30, 30, 0.68);
  line-height: 1.55;
}
.insight-meta {
  margin-top: auto;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(31, 93, 59, 0.5);
}

/* ============================================
   COLLABORATION CHIPS (CTA)
   ============================================ */
.collab-types {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.collab-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.05rem;
  border-radius: 9999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(247, 246, 242, 0.85);
  background: rgba(247, 246, 242, 0.06);
  border: 1px solid rgba(247, 246, 242, 0.18);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  letter-spacing: 0.01em;
}
.collab-chip:hover {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -8px rgba(199, 168, 109, 0.6);
}
