/* ════════════════════════════════════════════════════════
   LANDING PAGE STYLES
   Applied only when body.tc-landing is set (Home/Index)
════════════════════════════════════════════════════════ */

body.tc-landing {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  background: #fff;
  color: var(--stone-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.tc-landing a { color: inherit; text-decoration: none; }
body.tc-landing img { display: block; max-width: 100%; }

/* ── Section labels & headers ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-600);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--forest-600);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.section-title em { font-style: italic; color: var(--forest-600); }

.section-sub {
  font-size: 1rem;
  color: var(--stone-500);
  margin-top: 0.85rem;
  max-width: 560px;
  line-height: 1.65;
  text-wrap: pretty;
}
.section-header { margin-bottom: 3.5rem; }

body.tc-landing section { padding: 6rem var(--tc-pad); }
.section-inner { max-width: var(--tc-max-w); margin: 0 auto; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  min-height: 100svh;
  background-color: var(--forest-950);
  background-image: url('/images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg,
      rgba(5, 26, 16, 0.68) 0%,
      rgba(5, 26, 16, 0.42) 45%,
      rgba(5, 26, 16, 0.14) 100%
    ),
    linear-gradient(to top,
      rgba(5, 26, 16, 0.52) 0%,
      transparent 28%
    );
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: calc(var(--tm-navbar-height) + 5rem) var(--tc-pad) 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 230, 208, 0.55);
}
.hero-eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: rgba(237, 230, 208, 0.55);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #ede6d0;
  text-wrap: balance;
}
.hero-h1 em { font-style: italic; color: #7a6a4f; }
.hero-h1 .num-mark {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 0.7em;
  font-weight: 500;
  vertical-align: 0.35em;
  color: #7a6a4f;
  letter-spacing: 0;
  margin-right: 0.05em;
}

.hero-sub {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(237, 230, 208, 0.66);
  max-width: 50ch;
  text-wrap: pretty;
  margin-bottom: 2.5rem;
}

.hero-cta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: var(--forest-600); color: #fff;
  font-size: 0.9rem; font-weight: 700;
  border: none; border-radius: var(--radius-md);
  cursor: pointer; transition: all 0.15s;
  text-decoration: none;
}
.btn-cta-primary:hover {
  background: var(--forest-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(25, 135, 84, 0.3);
  color: #fff;
  text-decoration: none;
}
.btn-cta-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem; font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  cursor: pointer; transition: all 0.15s;
  text-decoration: none;
}
.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
}

/* Hero stats strip */
.hero-strip {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(237, 230, 208, 0.14);
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.25rem 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(237, 230, 208, 0.66);
  letter-spacing: 0.04em;
}
.hero-strip-cell { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-strip-num { font-size: 18px; color: #ede6d0; font-weight: 500; letter-spacing: -0.01em; }
.hero-strip-lab { text-transform: uppercase; opacity: 0.6; font-size: 10px; letter-spacing: 0.1em; }

/* Hero right — plate card */
.hero-right { display: flex; flex-direction: column; gap: 1rem; }
.hero-plate-card {
  background: rgba(5, 26, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.plate-number {
  font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums; color: var(--forest-300);
  font-family: var(--font-mono);
}
.plate-label { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 0.08em; }
.plate-species { font-size: 1rem; font-weight: 600; color: rgba(255, 255, 255, 0.85); }
.plate-location { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }
.plate-status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; color: var(--forest-300);
  background: rgba(25, 135, 84, 0.2); border-radius: 999px;
  padding: 0.3rem 0.7rem; width: fit-content;
}
.plate-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--forest-300); }

.hero-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.hero-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem; text-align: center;
}
.hero-stat-num { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.hero-stat-lab { font-size: 0.68rem; color: rgba(255, 255, 255, 0.45); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.2rem; }

/* ═══════════════════════════════════
   WHAT WE DO
═══════════════════════════════════ */
#what-we-do { background: #fff; }
.what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.what-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.what-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08); }
.what-card-plant { background: var(--forest-50); border: 1px solid var(--forest-200); }
.what-card-track { background: var(--stone-50); border: 1px solid var(--stone-200); }
.what-card-share { background: #fff8f2; border: 1px solid #fde8d0; }
.what-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1.25rem;
}
.what-card-plant .what-icon { background: var(--forest-200); color: var(--forest-800); }
.what-card-track .what-icon { background: var(--stone-200); color: var(--stone-700); }
.what-card-share .what-icon { background: #fde8d0; color: #c06c00; }
.what-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.what-card p { font-size: 0.9rem; color: var(--stone-500); line-height: 1.65; }

/* ═══════════════════════════════════
   JOURNEY OF A TREE
═══════════════════════════════════ */
#journey { background: var(--stone-50); }
#journey .section-label { color: var(--forest-600); }
#journey .section-label::before { background: var(--forest-600); }
#journey .section-title { color: var(--ink); }
#journey .section-title em { color: var(--forest-600); }
#journey .section-sub { color: var(--stone-500); }

.journey-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 2rem;
  overflow-x: auto;
}
.journey-phase {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; position: relative;
  min-width: 80px;
}
.journey-phase:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 1px;
  background: var(--stone-300);
  transition: background 0.3s;
}
.journey-phase.done::after { background: var(--forest-500); }
.journey-phase-circle {
  width: 56px; height: 56px;
  border-radius: 50%; z-index: 1;
  background: #fff;
  border: 1px solid var(--stone-300);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--stone-400);
  transition: all 0.25s;
}
.journey-phase.active .journey-phase-circle {
  background: var(--forest-600);
  border: 2px solid var(--forest-400);
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 0 0 6px rgba(25, 135, 84, 0.12);
}
.journey-phase.done .journey-phase-circle {
  background: var(--forest-50);
  border-color: var(--forest-300);
  color: var(--forest-600);
}
.journey-phase-tag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-top: 0.6rem;
  color: var(--stone-400); transition: color 0.25s;
}
.journey-phase.active .journey-phase-tag { color: var(--forest-600); }
.journey-phase-label {
  font-size: 0.88rem; font-weight: 500;
  color: var(--stone-500); text-align: center;
  margin-top: 0.2rem; line-height: 1.25; transition: all 0.25s;
}
.journey-phase.active .journey-phase-label { font-weight: 700; color: var(--ink); }
.journey-phase-sub {
  font-size: 0.7rem; color: var(--stone-400);
  text-align: center; margin-top: 0.2rem; line-height: 1.3;
}

.journey-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #29261b;
  border: 1px solid rgba(237, 230, 208, 0.12);
  border-radius: 2px;
  overflow: hidden;
  min-height: 280px;
}
.journey-panel-photo {
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0 14px,
    rgba(255, 255, 255, 0.07) 14px 28px
  ), #1a2418;
  border-right: 1px solid rgba(237, 230, 208, 0.08);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  padding: 2rem; position: relative;
  min-height: 280px;
}
.journey-photo-icon-wrap {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(237, 230, 208, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: rgba(237, 230, 208, 0.5);
}
.journey-photo-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-style: italic;
  color: rgba(237, 230, 208, 0.28);
  max-width: 200px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.journey-panel-info {
  padding: 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  color: #ede6d0;
}
.journey-panel-phase-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(237, 230, 208, 0.45);
}
.journey-panel-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: #ede6d0;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.journey-panel-sub {
  font-size: 0.82rem; color: rgba(237, 230, 208, 0.45);
  font-style: italic; margin-bottom: 0.5rem;
}
.journey-substeps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.55rem;
  flex: 1;
}
.journey-substep {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: rgba(237, 230, 208, 0.60); line-height: 1.5;
}
.journey-substep-dot {
  flex-shrink: 0; margin-top: 0.2rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(237, 230, 208, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.5rem; color: rgba(237, 230, 208, 0.5);
}
.journey-dots { display: flex; gap: 0.4rem; margin-top: 1rem; }
.journey-dot {
  height: 8px; border-radius: 4px;
  border: none; padding: 0; cursor: pointer;
  background: rgba(237, 230, 208, 0.18);
  transition: all 0.25s;
}
.journey-dot.active { width: 24px; background: rgba(237, 230, 208, 0.7); }
.journey-dot:not(.active) { width: 8px; }

/* ═══════════════════════════════════
   FOR YOU
═══════════════════════════════════ */
#for-you { background: var(--stone-50); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.audience-card {
  background: #fff;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.audience-card:hover { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); transform: translateY(-2px); }
.audience-card-top {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--stone-100);
}
.audience-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1.25rem;
}
.audience-card-ind .audience-card-icon { background: #e8f4fd; color: #1a5f8e; }
.audience-card-org .audience-card-icon { background: var(--forest-100); color: var(--forest-800); }
.audience-card-sci .audience-card-icon { background: #f3e8fd; color: #6b1a8e; }
.audience-card h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.audience-card p { font-size: 0.875rem; color: var(--stone-500); line-height: 1.6; }
.audience-pills { margin-top: 1rem; display: flex; flex-wrap: wrap; }
.audience-pill {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  padding: 0.2rem 0.55rem; border-radius: 999px; margin: 0.2rem 0.2rem 0 0;
}
.pill-green  { background: var(--forest-100); color: var(--forest-800); border: 1px solid var(--forest-200); }
.pill-blue   { background: #e8f4fd; color: #1a5f8e; border: 1px solid #b8daf5; }
.pill-purple { background: #f3e8fd; color: #6b1a8e; border: 1px solid #d4a8f5; }
.pill-stone  { background: var(--stone-100); color: var(--stone-600); border: 1px solid var(--stone-200); }
.audience-card-actions {
  padding: 1.25rem 2rem;
  margin-top: auto;
  border-top: 1px solid var(--stone-100);
  display: flex; flex-direction: column; gap: 0;
}
.audience-card-actions a {
  display: flex;
  justify-content: space-between; align-items: center;
  padding: 0.5rem 0;
  font-size: 0.875rem; font-weight: 500;
  color: var(--stone-600);
  border-bottom: 1px solid var(--stone-100);
  transition: color 0.15s, padding-left 0.15s;
  text-decoration: none;
}
.audience-card-actions a:last-child { border-bottom: none; }
.audience-card-actions a:hover { color: var(--forest-700); padding-left: 0.25rem; }
.link-arrow { opacity: 0.4; font-size: 0.8rem; transition: opacity 0.15s; }
.audience-card-actions a:hover .link-arrow { opacity: 1; }

/* ═══════════════════════════════════
   MILESTONES
═══════════════════════════════════ */
#milestones { background: #fff; }
.milestone-kpis { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; margin-bottom: 3rem; }
.milestone-kpi {
  text-align: center; padding: 1.75rem 1rem;
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
}
.milestone-kpi-num {
  font-family: var(--font-serif);
  font-size: 2.4rem; font-weight: 400;
  color: var(--forest-700);
  letter-spacing: -0.03em; line-height: 1;
}
.milestone-kpi-lab { font-size: 0.82rem; color: var(--stone-500); margin-top: 0.35rem; }
.milestone-map-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--stone-200); height: 420px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  position: relative;
}
#landing-map { width: 100%; height: 100%; }

/* ═══════════════════════════════════
   SDG
═══════════════════════════════════ */
#sdg { background: var(--stone-50); }
.sdg-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.sdg-card {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 1rem; text-align: center; transition: transform 0.2s;
}
.sdg-card:hover { transform: scale(1.04); }
.sdg-num { font-size: 2rem; font-weight: 900; line-height: 1; color: #fff; }
.sdg-name { font-size: 0.7rem; font-weight: 600; color: rgba(255, 255, 255, 0.9); margin-top: 0.35rem; line-height: 1.25; }

/* ═══════════════════════════════════
   FIELD NOTES (BLOG)
═══════════════════════════════════ */
#blog { background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--stone-200);
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); transform: translateY(-2px); }
.blog-card-img {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: space-between;
  padding: 0.85rem 1rem;
}
.blog-card-tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: 2px;
  background: rgba(255, 255, 255, 0.9); color: var(--forest-800);
}
.blog-card-photo-note {
  display: flex; align-items: flex-start; gap: 0.4rem;
  background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px; padding: 0.4rem 0.6rem;
  font-size: 0.7rem; color: rgba(255, 255, 255, 0.65);
  font-style: italic; line-height: 1.4;
  align-self: flex-end;
}
.blog-card-body {
  padding: 1.5rem; flex: 1;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.blog-card-date {
  font-family: var(--font-mono);
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--stone-400);
}
.blog-card-title {
  font-family: var(--font-serif);
  font-weight: 400; font-size: 1.15rem;
  line-height: 1.3; letter-spacing: -0.01em;
  color: var(--ink);
}
.blog-card-excerpt { font-size: 0.875rem; color: var(--stone-500); line-height: 1.6; flex: 1; }
.blog-card-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--forest-600); margin-top: 0.5rem;
  transition: gap 0.15s;
  text-decoration: none;
}
.blog-card-link:hover { gap: 0.6rem; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.tc-footer {
  background: var(--forest-950);
  color: rgba(255, 255, 255, 0.55);
  padding: 3.5rem var(--tc-pad) 2rem;
}
.footer-inner { max-width: var(--tc-max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
}
.footer-brand-desc { font-size: 0.85rem; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.6rem; transition: color 0.15s;
  text-decoration: none;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom-left { font-size: 0.8rem; }
.footer-bottom-right { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-bottom-right a { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); transition: color 0.15s; text-decoration: none; }
.footer-bottom-right a:hover { color: #fff; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .what-grid, .audience-grid, .blog-grid { grid-template-columns: 1fr; }
  .sdg-grid { grid-template-columns: repeat(3, 1fr); }
  .milestone-kpis { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .journey-phase-sub { display: none; }
}
@media (max-width: 640px) {
  body.tc-landing section { padding: 4rem 1.25rem; }
  .sdg-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .journey-panel { grid-template-columns: 1fr; }
  .journey-panel-photo { border-right: none; border-bottom: 1px solid #105233; min-height: 180px; }
  .journey-panel-info { padding: 1.5rem; }
  .hero-inner { padding-top: calc(var(--tm-navbar-height) + 3rem); padding-bottom: 4rem; }
  .hero-strip { grid-template-columns: repeat(3, 1fr); }
}
