/* === Theme colors === */
.bg-custom-green { background-color: #1f572a; }
.text-custom-gold { color: #d4a900; }
.bg-custom-gold { background-color: #d4a900; }
.border-custom-gold { border-color: #d4a900; }

/* === Base font === */
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background-color: #0d0d0d;
}

/* Show only Home by default */
main > section:not(#home) { display: none; }

/* === HERO lock === */
#home .cjg-hero-title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.05;
  margin: 0;
  font-size: 44px;
}
#home .cjg-hero-cta {
  margin-top: 12px;
}
#home .cjg-hero-tagline {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  margin-top: 16px;
  margin-bottom: 0;
  max-width: 920px;
  font-size: 18px;
  opacity: 0.95;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  #home .cjg-hero-title { font-size: 64px; }
  #home .cjg-hero-tagline { font-size: 20px; }
}
@media (min-width: 1024px) {
  #home .cjg-hero-title { font-size: 92px; }
  #home .cjg-hero-tagline { font-size: 22px; }
}

/* === Footer social === */
.cjg-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}
.cjg-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease;
}
.cjg-social-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}
.cjg-social-icon {
  display: block;
  width: 22px;
  height: 22px;
  pointer-events: none;
  user-select: none;
}
