/* =====================
   GLOBAL STYLES
===================== */
:root {
  --bg: #202020;
  --bg-2: #272627;
  --text: #ffffff;
  --muted: #cfcfcf;
  --gold: #d4af37;
  --radius: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", system-ui, sans-serif; /* default for paragraphs and body */
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  line-height: 1.5;
}

#hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
  position: relative;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

/* Headings use Poppins */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", system-ui, sans-serif;
  line-height: 1.2;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Paragraphs use Lato */
p {
  font-family: "Lato", system-ui, sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem); /* 17.6px → 20px */
  line-height: 1.7;
  margin-bottom: 18px;
}

.kicker {
  font-size: clamp(3rem, 5vw, 3rem); /* scales like Apple */
  font-weight: 700 !important;                  /* bold */
  letter-spacing: -0.02em;           /* tighter kerning */
  line-height: 1.1;
  margin: 0 auto 1rem;
  display: block;
  text-align: left;
  color: #d4af37;
  text-transform: none !important;   
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  font-weight: 600; 
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 20px;
}

.cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta:hover {
  background: #b9972e;
}
