@import url("./variables.css");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

/* =========================================
   RESET & BASE
========================================= */

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;

  font-family: var(--font-main);
  color: var(--text);
  background: var(--soft-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.container {
  width: min(
    calc(100% - (var(--page-padding) * 2)),
    var(--container)
  );
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 18px;

  color: var(--green-800);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-gradient);
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 {
  font-size: var(--display-xl);
  font-weight: 700;
}

h2 {
  font-size: var(--display-lg);
  font-weight: 700;
}

h3 {
  font-size: var(--heading-md);
  font-weight: 700;
}

p {
  color: var(--text-muted);
}

section[id] {
  scroll-margin-top: 120px;
}
html {
  scroll-behavior: smooth;
}
section[id] {
  scroll-margin-top: 120px;
}