/* ── Central Color Tokens ── */
:root {
  --color-primary:            #346a2d;
  --color-on-primary:         #ffffff;
  --color-gwg-dark:           #1a3316;
  --color-gwg-lime:           #9ad68c;
  --color-gwg-pale:           #e8f5e4;
  --color-surface:            #f8faf1;
  --color-surface-container:  #ecefe6;
  --color-on-surface:         #191d17;
  --color-on-surface-variant: #41493e;
  --color-outline-variant:    #c1c9ba;
  --color-amber:              #b45309;
  --radius-card:              1.25rem;
  --shadow-card:              0 2px 8px rgba(52,106,45,0.07), 0 1px 4px rgba(52,106,45,0.05);
  --shadow-card-hover:        0 16px 36px -8px rgba(52,106,45,0.18), 0 4px 12px -4px rgba(52,106,45,0.10);
}

/* ── Hero Dot Grid ── */
.hero-dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(154,214,140,0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  z-index: 1;
}

/* ── Section Label ── */
.section-label {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

/* ── Typography Scale ── */

/* Subpage H1 hero title */
.t-hero {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Small uppercase label above H1 in hero */
.t-hero-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
  color: rgba(154, 214, 140, 0.75);
}

/* Subtitle below H1 in hero */
.t-hero-sub {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

/* Main section H2 headings */
.t-section-title {
  font-size: clamp(1.875rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

/* Small uppercase label above H2 in content sections */
.t-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

/* H3 card/sub headings */
.t-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* Standard body text */
.t-body {
  font-size: 1rem;
  line-height: 1.7;
}

/* Small body text */
.t-body-sm {
  font-size: 0.875rem;
  line-height: 1.65;
}

/* Meta text — badges, dates, categories */
.t-meta {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ── GWG Button System ── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  background: var(--color-gwg-lime);
  color: var(--color-gwg-dark);
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.btn-primary:hover  { opacity: 0.9; }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-secondary:hover  { background: color-mix(in srgb, var(--color-primary) 5%, transparent); }
.btn-secondary:active { transform: scale(0.97); }
