/* ============================================================
   reset.css — Base reset and body defaults
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text-1);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ── Shared section layout ── */
section {
  padding: var(--section-gap) 24px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Shared typography utilities ── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold-1);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--c-text-1);
  margin-bottom: 20px;
}

.section-body {
  font-size: 17px;
  color: var(--c-text-2);
  line-height: 1.65;
  max-width: 600px;
}

/* ── Shared tag pill ── */
.tag {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 980px;
  background: var(--g-gold-soft);
  border: 1px solid rgba(255, 214, 10, 0.2);
  color: var(--c-gold-1);
}

/* ── Shared buttons ── */
.btn-primary {
  padding: 14px 28px;
  border-radius: 980px;
  background: var(--g-gold);
  color: #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: scale(1.03);
}

.btn-ghost {
  padding: 14px 28px;
  border-radius: 980px;
  border: 1px solid rgba(255, 214, 10, 0.35);
  color: var(--c-gold-1);
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 214, 10, 0.08);
  border-color: rgba(255, 214, 10, 0.6);
  transform: scale(1.03);
}

/* ── Footer ── */
footer {
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid var(--c-border);
}

footer p {
  font-size: 13px;
  color: var(--c-text-3);
}

footer span {
  color: var(--c-gold-1);
}
