*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  background: var(--gradient-page);
  color: var(--color-text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section {
  padding: calc(var(--header-height) + 52px) 0 84px;
}

.section--compact {
  padding-top: 68px;
}

.divider {
  width: min(92%, 1120px);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(245,214,106,0.9), transparent);
  opacity: 0.45;
}

.subtle-note {
  color: var(--color-text-muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.subtle-note--center {
  text-align: center;
}

@media (max-width: 980px) {
  .section {
    padding: calc(var(--header-height) + 28px) 0 64px;
  }
}