/* TOKENS */
:root {
  --text: #3f3328;
  --text-soft: #6b5a4c;
  --accent: #ab8665;
  --accent-deep: #7c6249;
  --surface: rgba(255, 251, 246, 0.78);
  --line: rgba(107, 83, 63, 0.14);
  --shadow: 0 24px 60px rgba(109, 88, 70, 0.08);
  --success: #5d7d55;
  --error: #a35c54;
  --container: 1200px;
  --narrow: 820px;
  --radius-xl: 36px;
  --radius-sm: 18px;
}

/* GENERAL */
*,
*::before,
*::after {
  box-sizing: border-box;
  transition: all 220ms ease-in-out;
}

html {
  scroll-behavior: smooth;
  width: 100vw;
  height: fit-content;
  min-height: 100vh;
  overflow-x: clip;
  z-index: 2;
  padding: 0;
  display: flex;
  justify-content: start;
}

body {
  position: relative;
  display: flex;
  margin: 0;
  min-height: 100%; 
  max-width: 100%;
  padding: 0;
  overflow-x: clip;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
      radial-gradient(circle at top left, rgba(171, 134, 101, 0.13), transparent 30%),
      radial-gradient(circle at 88% 3%, rgba(236, 226, 214, 0.9), transparent 34%),
      linear-gradient(180deg, #f8f4ef 0%, #f4eee6 52%, #f2ece4 100%);
      z-index: 3;
  /* background-color: lightpink; */
}

main {
  width: 100%; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center;
  z-index: 4;
  margin: 0;
  padding: 0;
}

section {
  position: relative;
  width: inherit;
  height: auto;
  margin: 0;
  padding: 0 10vw;
  padding: 100px 10vw;
  z-index: 5;
  /* background-color: lightgray; */
}

h1, h2, h3, h4, h5, h6, p, ul, ol,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
      repeating-linear-gradient(
          90deg,
          transparent 0,
          transparent 84px,
          rgba(124, 98, 73, 0.018) 85px,
          transparent 86px
      );
  opacity: 0.75;
}


/* VERTICAL SPACING */
.vertical-spacing-xxxs {height: 5px;}
.vertical-spacing-xxs {height: 25px;}
.vertical-spacing-xs {height: 50px;}
.vertical-spacing-s {height: 100px;}
.vertical-spacing {height: 150px;}
.vertical-spacing-l {height: 200px;}
.vertical-spacing-xl {height: 250px;}



/* ALIGNMENT */
.center-vertically {top: 50%; transform: translateY(-50%);}
.center-horizontally {left: 50%; transform: translateX(-50%);}
.center-evenly {top: 50%; left: 50%; transform: translate(-50%, -50%);}
