@import url("components/header.css");
@import url("components/hero.css");
@import url("components/intro.css");
@import url("components/values.css");
@import url("components/community.css");
@import url("components/faq.css");
@import url("components/join.css");
@import url("components/footer.css");
@import url("components/motion.css");

:root {
  --ink: #111111;
  --cream: #f5f1e8;
  --paper: #ffffff;
  --gold: #d49b38;
  --gold-soft: #e8bd72;
  --sage: #8b6a32;
  --line: rgba(17, 17, 17, 0.18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
}
a {
  color: inherit;
  text-decoration: none;
}
.section-pad {
  padding: 120px 12vw;
}
.eyebrow {
  align-items: center;
  color: var(--gold-soft);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow-line {
  background: currentColor;
  height: 1px;
  width: 38px;
}
.eyebrow-dark {
  color: #a26e1d;
}
.hero h1,
h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 86px);
  letter-spacing: -0.055em;
  line-height: 0.97;
  margin: 27px 0;
}
.hero h1 i,
h2 i,
h3 i {
  color: var(--gold-soft);
  font-weight: 600;
}
.button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  gap: 28px;
  justify-content: space-between;
  letter-spacing: 0.03em;
  padding: 17px 19px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--gold);
  color: var(--ink);
}
.button-dark {
  background: var(--ink);
  color: #fff;
  width: 100%;
}
.button-dark:hover {
  background: #2b2b2b;
}
.skip-link {
  background: var(--ink);
  color: #fff;
  left: 1rem;
  padding: 0.75rem 1rem;
  position: absolute;
  top: -3rem;
  z-index: 1000;
}
.skip-link:focus {
  top: 1rem;
}
@media (max-width: 760px) {
  .section-pad {
    padding: 80px 7vw;
  }
}
